Browse Source

bug fix, first run libtoolize then aclocal

reported by Joseph Trebbien on
  [Ngspice-devel] Build error "required file `./ltmain.sh' not found"
rlar 14 years ago
parent
commit
1baec0b6b1
  1. 8
      autogen.sh

8
autogen.sh

@ -195,14 +195,14 @@ $znew
fi
echo "Running aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS \
|| error_and_exit "aclocal failed"
echo "Running libtoolize"
libtoolize --copy --force \
|| error_and_exit "libtoolize failed"
echo "Running aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS \
|| error_and_exit "aclocal failed"
# optional feature: autoheader
(autoheader --version) < /dev/null > /dev/null 2>&1
if [ $? -eq 0 ]; then

Loading…
Cancel
Save