diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-25 16:21:48 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-25 18:44:27 +0200 |
commit | 0fc0e4bd73c60c1cd742509a70cf79932def4ea5 (patch) | |
tree | 54905b1009d673a5333f56c3232738469147e872 /bootstrap | |
parent | f482e7ea665938152518fe15cd71cfe882dd2b30 (diff) | |
download | libguestfs-0fc0e4bd73c60c1cd742509a70cf79932def4ea5.tar.gz libguestfs-0fc0e4bd73c60c1cd742509a70cf79932def4ea5.tar.xz libguestfs-0fc0e4bd73c60c1cd742509a70cf79932def4ea5.zip |
build: use only one m4/ directory
* Makefile.am (ACLOCAL_AMFLAGS): Specify only one include dir: m4.
* bootstrap: Tell gnulib-tool to put .m4 files in m4/, not gnulib/m4.
* autogen.sh: Move autoreconf from here into...
* bootstrap: ...here, so that it is run only when gnulib-tool is.
Also, tell it to skip the usual autopoint and libtoolize runs.
* m4/.gitignore: Update.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -76,7 +76,11 @@ warnings $gnulib_tool \ --avoid=dummy \ --with-tests \ - --m4-base=gnulib/m4 \ + --m4-base=m4 \ --source-base=gnulib/lib \ --tests-base=gnulib/tests \ --import $modules + +# Disable autopoint and libtoolize, since they were already done above. +AUTOPOINT=true LIBTOOLIZE=true \ + autoreconf --verbose --install --no-recursive |