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
wilder
Michael Pyne 18 years ago
parent f81955d5e0
commit 7cb91960f4
  1. 7
      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))

Loading…
Cancel
Save