From 460dfb712078121fff0a25ec7b91bbaf069a14c8 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 26 Feb 2009 01:57:32 +0100 Subject: fully move m4 scripts to m4/ since that's apparently what was intended --- .gitignore | 1 + Makefile.am | 2 ++ autogen.sh | 1 + configure.ac | 1 + 4 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index bcb9884..f62c423 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/autogen.sh b/autogen.sh index 4287fdb..f25fe64 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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]) -- cgit