aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-07-18 18:54:55 +0300
committerLasse Collin <lasse.collin@tukaani.org>2009-07-18 18:54:55 +0300
commit4c9c989d45b188667799a7a1d6c728ed43f7bf77 (patch)
tree38e68a52e6aeeab6e9c110e7ce27c919a6093fa3
parentUpdated the totally outdated TODO file. (diff)
downloadxz-4c9c989d45b188667799a7a1d6c728ed43f7bf77.tar.xz
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.
-rw-r--r--.gitignore1
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac3
3 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 7c85aab0..206906c2 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 1ddbdd81..6543361f 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 86eac38e..d46ebee1 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"],