mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-06-28 13:23:10 +08:00
Improve order of autotools calls
This commit is contained in:
parent
f1856c82f5
commit
2ba6143d9b
@ -1,3 +1,6 @@
|
||||
Wed Mar 30 23:21:25 CST 2005 Jeff Smith <whydoubt@yahoo.com>
|
||||
* autogen.sh: Improve order of autotools calls
|
||||
|
||||
Mon Mar 28 21:31:36 CST 2005 Jeff Smith <whydoubt@yahoo.com>
|
||||
* acinclude.m4:
|
||||
* src/util/Makefile.am: Only mdb-sql depends on readline
|
||||
|
@ -74,12 +74,14 @@ if test "$DIE" -eq 1; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test x$NOCONFIGURE = x; then
|
||||
if test -z "$*"; then
|
||||
echo "**Warning**: I am going to run \`configure' with no arguments."
|
||||
echo "If you wish to pass any to it, please specify them on the"
|
||||
echo \`$0\'" command line."
|
||||
echo
|
||||
fi
|
||||
fi
|
||||
|
||||
case $CC in
|
||||
xlc )
|
||||
@ -123,18 +125,18 @@ do
|
||||
echo "Making $dr/aclocal.m4 writable ..."
|
||||
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
|
||||
fi
|
||||
echo "Running aclocal $aclocalinclude ..."
|
||||
aclocal $aclocalinclude
|
||||
if grep "^A[CM]_PROG_LIBTOOL" configure.in >/dev/null; then
|
||||
echo "Running libtoolize..."
|
||||
libtoolize --force --copy
|
||||
fi
|
||||
echo "Running aclocal $aclocalinclude ..."
|
||||
aclocal $aclocalinclude
|
||||
if grep "^A[CM]_CONFIG_HEADER" configure.in >/dev/null; then
|
||||
echo "Running autoheader..."
|
||||
autoheader
|
||||
fi
|
||||
echo "Running automake --gnu $am_opt ..."
|
||||
automake --add-missing --gnu $am_opt
|
||||
automake --add-missing --gnu --copy $am_opt
|
||||
echo "Running autoconf ..."
|
||||
autoconf
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user