make scons cope with renamed ui_*.h

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19426 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2007-08-11 11:24:17 +00:00
parent 168f6a5a50
commit d9af2acb53

View File

@ -1749,7 +1749,7 @@ if build_qt4:
# qt4_moced_files = [frontend_env.Moc4(x.replace('.cpp', '_moc.cpp'), \
# x.replace('.cpp', '.h')) for x in qt4_moc_files]
qt4_moced_files = [frontend_env.Moc4("moc_" + x, x.replace('.cpp', '.h')) for x in qt4_moc_files]
qt4_moced_files = [frontend_env.Moc4(x.replace('.cpp', '_moc.cpp'), x.replace('.cpp', '.h')) for x in qt4_moc_files]
qt4 = frontend_env.StaticLibrary(
target = '$LOCALLIBPATH/qt4',