From 911df6bc1ce52f84fd3a2841893f596138e75c5c Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Wed, 3 Jan 2007 05:52:15 +0000 Subject: [PATCH] Scons: no longer copy lyx.exe to lyx-qt2.exe git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16473 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/scons/SConstruct | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/development/scons/SConstruct b/development/scons/SConstruct index a7075ebdc8..892eb55f14 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -1758,7 +1758,7 @@ if build_lyx: # Build lyx with given frontend # lyx = env.Program( - target = '$BUILDDIR/$frontend/lyx', + target = '$BUILDDIR/lyx', source = ['$BUILDDIR/common/main.C'] + \ utils.createResFromIcon(env, 'lyx_32x32.ico', '$LOCALLIBPATH/lyx.rc'), LIBS = [ @@ -1778,10 +1778,6 @@ if build_lyx: socket_libs + system_libs ) - # [/path/to/lyx.ext] => lyx-qt3.ext - target_name = os.path.split(str(lyx[0]))[1].replace('lyx', 'lyx-%s' % frontend) - Alias('lyx', env.Command(os.path.join('$BUILDDIR', target_name), lyx, - [Copy('$TARGET', '$SOURCE')])) Alias('lyx', lyx) else: # define lyx even if lyx is not built with rebuild=no