aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
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");