From 4c9c989d45b188667799a7a1d6c728ed43f7bf77 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 18 Jul 2009 18:54:55 +0300 Subject: [PATCH] Use AC_CONFIG_AUX_DIR to clean up the toplevel directory a little. Fixed a related bug in the toplevel Makefile.am. Added the build-aux directory to .gitignore. --- .gitignore | 1 + Makefile.am | 1 - configure.ac | 3 ++- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7c85aab..206906c 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ Makefile.in /autom4te.cache /Doxyfile /aclocal.m4 +/build-aux /compile /config.guess /config.h diff --git a/Makefile.am b/Makefile.am index 1ddbdd8..6543361 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,7 +16,6 @@ SUBDIRS += src po tests EXTRA_DIST = \ version.sh \ - config.rpath \ Doxyfile.in \ extra \ doc \ diff --git a/configure.ac b/configure.ac index 86eac38..d46ebee 100644 --- a/configure.ac +++ b/configure.ac @@ -20,8 +20,9 @@ AC_PREREQ([2.61]) AC_INIT([XZ Utils], m4_esyscmd([/bin/sh version.sh]), [lasse.collin@tukaani.org], [xz]) AC_CONFIG_SRCDIR([src/liblzma/common/common.h]) -AC_CONFIG_HEADER([config.h]) +AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_HEADER([config.h]) PACKAGE_HOMEPAGE=http://tukaani.org/xz/ AC_DEFINE_UNQUOTED([PACKAGE_HOMEPAGE], ["$PACKAGE_HOMEPAGE"], -- 2.7.4