Skip to content
Snippets Groups Projects
Commit 7c40281c authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Now doesn't zap Cygnus-configure scripts.

Rev: src/run_autoconfig:1.16
parent cd6ec98e
Branches
Tags
No related merge requests found
...@@ -12,8 +12,12 @@ find . -type d -print|egrep -v '/(CVS)|(RCS)$'| while read dir; do ...@@ -12,8 +12,12 @@ find . -type d -print|egrep -v '/(CVS)|(RCS)$'| while read dir; do
fi fi
if [ -f $dir/configure.in ]; then if [ -f $dir/configure.in ]; then
if grep AC_INIT $dir/configure.in >/dev/null; then
echo "Running autoconf in $dir" echo "Running autoconf in $dir"
( cd $dir ; autoconf ) ( cd $dir ; autoconf )
else
echo "$dir seems to use Cygnus-configure."
fi
fi fi
if [ -f $dir/Makefile.in -a ! -f $dir/dependencies ] && egrep @dependencies@ $dir/Makefile.in >/dev/null; then if [ -f $dir/Makefile.in -a ! -f $dir/dependencies ] && egrep @dependencies@ $dir/Makefile.in >/dev/null; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment