diff options
author | David Shaw <[email protected]> | 2004-12-21 23:44:06 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-12-21 23:44:06 +0000 |
commit | ab4b98c77aeeae5bc7e79199e19ff113c015ad2d (patch) | |
tree | add63dd10a9818b35ef8affb0760d7a1b9dc030a /scripts/autogen.sh | |
parent | As always, CVS leaves out the local directory? (diff) | |
download | gnupg-ab4b98c77aeeae5bc7e79199e19ff113c015ad2d.tar.gz gnupg-ab4b98c77aeeae5bc7e79199e19ff113c015ad2d.zip |
* autogen.sh: automake needs --add-missing for conditional CPPFLAGS build
in keyserver/Makefile.am.
Diffstat (limited to 'scripts/autogen.sh')
-rwxr-xr-x | scripts/autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/autogen.sh b/scripts/autogen.sh index 27da808a9..b75bb1819 100755 --- a/scripts/autogen.sh +++ b/scripts/autogen.sh @@ -273,8 +273,8 @@ echo "Running aclocal -I m4 ${ACLOCAL_FLAGS:+$ACLOCAL_FLAGS }..." $ACLOCAL -I m4 $ACLOCAL_FLAGS echo "Running autoheader..." $AUTOHEADER -echo "Running automake --gnu ..." -$AUTOMAKE --gnu; +echo "Running automake --gnu --add-missing..." +$AUTOMAKE --gnu --add-missing; echo "Running autoconf..." $AUTOCONF |