summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-12-17 16:33:45 +0100
committerJan Engelhardt <jengelh@medozas.de>2011-12-17 16:33:45 +0100
commit7a4a2eb559de39fdca0a33d4455b843f5ba3221f (patch)
tree973aa62a3c569cfcec2b5626073a5da28f727c8f
parent002e7c729ec905e9351c9dbdafd988d921dd6699 (diff)
build: use AC_CONFIG_AUX_DIR and stash away tools
-rw-r--r--.gitignore5
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index cf1c1da..f1348b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,11 +14,8 @@ Makefile.in
# build system
/aclocal.m4
/autom4te.cache/
+/build-aux/
/config.*
/configure
-/depcomp
-/install-sh
/libtool
-/ltmain.sh
-/missing
/stamp-h1
diff --git a/configure.ac b/configure.ac
index e8f8427..5bb032e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.50])
AC_INIT([ulogd], [2.0.0beta4])
-
+AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2 1.10b])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])