From d9af2acb534aa0785150189476db1b3ce96f8ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Sat, 11 Aug 2007 11:24:17 +0000 Subject: [PATCH] make scons cope with renamed ui_*.h git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19426 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/scons/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 8dd4252912..162fc034df 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -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',