diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-02-26 01:57:32 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-02-26 03:18:21 +0100 |
commit | 460dfb712078121fff0a25ec7b91bbaf069a14c8 (patch) | |
tree | 396908f17e62ddc5f32348916045d6fc89bfc302 | |
parent | c891735f10f65e84896172da5d7c0064efa72feb (diff) |
fully move m4 scripts to m4/ since that's apparently what was intended
-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]) |