diff options
| -rw-r--r-- | .gitignore | 12 | ||||
| -rw-r--r-- | configure.ac | 5 | 
2 files changed, 7 insertions, 10 deletions
@@ -1,5 +1,5 @@ -.deps -.libs +.deps/ +.libs/  Makefile  Makefile.in  *.o @@ -7,12 +7,8 @@ Makefile.in  *.lo  /aclocal.m4 -/autom4te.cache +/autom4te.cache/ +/build-aux/  /config.*  /configure -/depcomp -/install-sh  /libtool -/ltmain.sh -/missing -/ylwrap diff --git a/configure.ac b/configure.ac index 64d354f..22582b8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,10 @@  AC_INIT(conntrack-tools, 1.0.0, pablo@netfilter.org) +AC_CONFIG_AUX_DIR([build-aux])  AC_CANONICAL_HOST -  AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([-Wall foreign subdir-objects dist-bzip2 1.6]) +AM_INIT_AUTOMAKE([-Wall foreign subdir-objects +	tar-pax no-dist-gzip dist-bzip2 1.6])  dnl kernel style compile messages  m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])  | 
