* Make qt-copy not use the srcdir != builddir paradigm.

svn path=/trunk/kdenonbeta/kdecvs-build/; revision=305035
wilder
Michael Pyne 22 years ago
parent 6007c95199
commit 1eb27883dc
  1. 6
      kdecvs-build

@ -932,7 +932,8 @@ sub setup_build_system
return 0 if get_option ($dir, 'build-system-only');
# Now we're in the build directory
chdir ("$kdecvs/build/$dir");
# qt-copy doesn't use this metaphor, however.
chdir ("$kdecvs/build/$dir") unless $dir eq 'qt-copy';
my $conf_flags = get_option ($dir, 'configure-flags');
@ -1048,7 +1049,8 @@ sub handle_build
next if get_option ($dir, 'build-system-only');
chdir ("$kdecvs/build/$dir");
# qt-copy gets built in its source directory.
chdir ("$kdecvs/build/$dir") unless $dir eq 'qt-copy';
print "---\nBuilding $dir\n---\n";
$result = safe_make ($dir);

Loading…
Cancel
Save