diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | autogen.sh | 1 | ||||
-rw-r--r-- | configure.ac | 1 |
4 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,4 @@ +m4 *~ *.o *.a diff --git a/Makefile.am b/Makefile.am index 3de6226..df6ac90 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,6 +5,8 @@ SUBDIRS = \ modem-modeswitch \ udev-acl +ACLOCAL_AMFLAGS = -I m4 + clean-local: rm -rf udev-test-install @@ -14,6 +14,7 @@ PKG_NAME=udev-extras } (cd $srcdir; + mkdir -p m4/ autoreconf --install --symlink ./configure $@ ) diff --git a/configure.ac b/configure.ac index 2ba046e..aadba46 100644 --- a/configure.ac +++ b/configure.ac @@ -11,6 +11,7 @@ AC_PROG_CC AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_LIBTOOL +AC_CONFIG_MACRO_DIR([m4]) dnl prefix is /usr, exec_prefix in /, if overridden exec_prefix follows prefix AC_PREFIX_DEFAULT([/usr]) |