2000-03-09 18:50:26 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2010-04-08 21:38:03 +02:00
|
|
|
autoreconf -vfi -I m4
|
2000-03-09 18:50:26 +00:00
|
|
|
|
2010-04-08 21:38:03 +02:00
|
|
|
exit 0
|
2000-03-09 18:50:26 +00:00
|
|
|
|
|
|
|
|
if [ -x config.status -a -z "$*" ]; then
|
|
|
|
|
./config.status --recheck
|
|
|
|
|
else
|
|
|
|
|
if test -z "$*"; then
|
|
|
|
|
echo "I am going to run ./configure with no arguments - if you wish "
|
|
|
|
|
echo "to pass any to it, please specify them on the $0 command line."
|
|
|
|
|
echo "If you do not wish to run ./configure, press Ctrl-C now."
|
|
|
|
|
trap 'echo "configure aborted" ; exit 0' 1 2 15
|
|
|
|
|
sleep 1
|
|
|
|
|
fi
|
|
|
|
|
./configure "$@"
|
|
|
|
|
fi
|