]> git.lyx.org Git - features.git/commitdiff
Scons: remove some other qt3 debris
authorBo Peng <bpeng@lyx.org>
Sun, 22 Oct 2006 20:34:37 +0000 (20:34 +0000)
committerBo Peng <bpeng@lyx.org>
Sun, 22 Oct 2006 20:34:37 +0000 (20:34 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15494 a592a061-630c-0410-9148-cb99ea01b6c8

development/scons/SConstruct

index a7069eca1789cba0f1c835175b14328279fd5f44..47d5a6c9bff7304546ffea8e964c2aa1870c6931 100644 (file)
@@ -126,7 +126,7 @@ opts = Options(['config.py'])
 opts.AddOptions(
     # frontend
     EnumOption('frontend', 'Main GUI', default_frontend,
-        allowed_values = ('qt4') ),
+        allowed_values = ('qt4',) ),
     # debug or release build
     EnumOption('mode', 'Building method', default_build_mode,
         allowed_values = ('debug', 'release') ),
@@ -1862,10 +1862,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