From 1eb27883dc29b56db69bd5d127a005be7ff4b110 Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Mon, 19 Apr 2004 23:08:03 +0000 Subject: [PATCH] * Make qt-copy not use the srcdir != builddir paradigm. svn path=/trunk/kdenonbeta/kdecvs-build/; revision=305035 --- kdecvs-build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kdecvs-build b/kdecvs-build index cd3ee44..f7f4aa2 100755 --- a/kdecvs-build +++ b/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);