]> git.lyx.org Git - features.git/commitdiff
Scons: fix a filelist bug (missing spell.C)
authorBo Peng <bpeng@lyx.org>
Sun, 13 Aug 2006 14:30:40 +0000 (14:30 +0000)
committerBo Peng <bpeng@lyx.org>
Sun, 13 Aug 2006 14:30:40 +0000 (14:30 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14643 a592a061-630c-0410-9148-cb99ea01b6c8

development/scons/SConstruct

index 253899722d88a6722b3e5d55b2a8c9e0e6d1bac2..b1cde5b479fb078650b9941479d6ad27d2c34a74 100644 (file)
@@ -58,7 +58,6 @@ boost_version = '1_33_1'
 
 devel_version = True
 default_build_mode = 'debug'
-lyx_ext = '*.C'
 
 package = 'lyx'
 package_bugreport = 'lyx-devel@lists.lyx.org'
@@ -1868,11 +1867,11 @@ if build_lyxbase:
     env.substFile('$BUILDDIR/common/version.C', '$TOP_SRCDIR/src/version.C.in')
 
     if env.has_key('USE_ASPELL') and env['USE_ASPELL']:
-        lyx_post_source.append('aspell.C')
+        src_post_files.append('aspell.C')
     elif env.has_key('USE_PSPELL') and env['USE_PSPELL']:
-        lyx_post_source.append('pspell.C')
+        src_post_files.append('pspell.C')
     elif env.has_key('USE_ISPELL') and env['USE_ISPELL']:
-        lyx_post_source.append('ispell.C')
+        src_post_files.append('ispell.C')
 
     # msvc requires at least one source file with main()
     # so I exclude main.C from lyxbase