123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #! /bin/sh
- . test-init.sh
- echo "# Automatically generated by $me." > get.sh
- echo : >> get.sh
- echo ACLOCAL_AMFLAGS = -I m4 > Makefile.am
- if libtoolize --copy --install && test -f m4/libtool.m4; then
- echo "ACLOCAL_PATH='$(pwd)/m4':\$ACLOCAL_PATH" >> get.sh
- echo "export ACLOCAL_PATH" >> get.sh
- else
-
-
-
- rm -rf m4
- mkdir m4
- echo AC_PROG_LIBTOOL >> configure.ac
-
- if $ACLOCAL -Wno-syntax -I m4 --install && test -f m4/libtool.m4; then
- :
- else
- echo "skip_all_ \"couldn't find or get libtool macros\"" >> get.sh
- fi
- fi
- . ./get.sh
- $ACLOCAL --force -I m4 || cat >> get.sh <<'END'
- ACLOCAL="$ACLOCAL -Wno-syntax"
- END
- keep_testdirs=yes
- :
|