From 428afb264c87855945fce33216d23a89eb912541 Mon Sep 17 00:00:00 2001 From: axis Date: Tue, 26 Apr 2011 19:11:14 +0200 Subject: [PATCH] Stopped running init-repository from configure. It's unexpected that configure tampers with your git checkout. --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 69a5d865..7c771ef9 100755 --- a/configure +++ b/configure @@ -44,7 +44,9 @@ $relpath =~ s,\\,/,g; # the current directory is the "build tree" or "object tree" my $outpath = getcwd(); -system_v("perl $relpath/init-repository -q") and die("init-repository failed"); +if (! -e "$outpath/qtbase/configure") { + die("$outpath/qtbase/configure not found. Did you forget to run \"init-repository\"?"); +} ensureDir("$outpath/qtbase"); chdir("$outpath/qtbase");