From: Michael Schmitt Date: Sat, 23 Dec 2006 09:09:10 +0000 (+0000) Subject: * scons/SConstruct: fix manifest on Windows X-Git-Tag: 1.6.10~11457 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=515616a9143feab98ecfbfb4d1b58f390cb6b751;p=features.git * scons/SConstruct: fix manifest on Windows git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16382 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 887645f452..6f3f88cbdc 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -1367,7 +1367,7 @@ if frontend == 'qt4': else: manifest = 'QtGui4.dll.manifest' if os.path.isfile(manifest): - env['LINKCOM'] = [env['LINKCOM'], 'mt.exe /MANIFEST %s /outputresource:$TARGET;1' % manifest] + frontend_env['LINKCOM'] = [frontend_env['LINKCOM'], 'mt.exe /MANIFEST %s /outputresource:$TARGET;1' % manifest] frontend_env = conf.Finish()