From 7cb91960f4bb677d94fe559b0e884a210b7b496e Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Sat, 28 Jun 2008 22:28:44 +0000 Subject: [PATCH] Fix this call to a function which assumes its only called for non-CMake modules svn path=/trunk/KDE/kdesdk/scripts/kdesvn-build; revision=825649 --- kdesvn-build | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/kdesvn-build b/kdesvn-build index 1e3db7f..3589c44 100755 --- a/kdesvn-build +++ b/kdesvn-build @@ -4958,12 +4958,7 @@ sub setup_build_system # Symlink source directory to build directory if module doesn't support # srcdir != builddir. If it's qt-copy only do so if it is Qt 3. # Note that module_needs_builddir_help() already takes care of that test. - # - # Also, CMake requires srcdir != builddir so we could avoid making a fake - # builddir that CMake would just refuse to use anyways but the CMake-using - # modules (except for l10n-kde4) pretty much never need help anyways so - # that check is also already taken care of. - if (module_needs_builddir_help($module)) + if (not $uses_cmake and module_needs_builddir_help($module)) { whisper "\tFaking builddir for g[$module]"; if (not prepare_fake_builddir($module))