From 897c0dcfc729435b7a5aaf9d68c562f118958395 Mon Sep 17 00:00:00 2001 From: hno <> Date: Sat, 2 Oct 2004 14:24:30 +0000 Subject: [PATCH] Fix bootstrap script again.. last change introduced a loop.. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index fb3f8ad416..94f9868354 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -71,7 +71,7 @@ do if ( echo "Bootstrapping $dir" cd ./$dir - if [ -f bootstrap.sh ]; then + if [ -n "$dir" ] && [ -f bootstrap.sh ]; then ./bootstrap.sh else # Bootstrap the autotool subsystems -- 2.47.3