From 6f29180afc1a53b2316672198ba7da512dbe72c8 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Wed, 27 Sep 2006 19:30:08 +0000 Subject: [PATCH] Scons: correct installation of cygwin fonts git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15175 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/scons/SConstruct | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 71e5ed3b41..83f459e3e4 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -2255,9 +2255,11 @@ if 'install' in targets: ['INSTALL', 'README', 'README.Cygwin', 'RELEASE-NOTES', 'COPYING', 'ANNOUNCE']]) Alias('install', Cygwin_Doc) # cygwin fonts also need to be installed - env.Install(os.path.join(share_dest_dir, 'font'), - [env.subst('$TOP_SRC_DIR/development/Win32/packaging/bakoma/%s' % file) \ + Cygwin_fonts = os.path.join(share_dest_dir, 'font') + env.Install(Cygwin_fonts, + [env.subst('$TOP_SRCDIR/development/Win32/packaging/bakoma/%s' % file) \ for file in win32_bakoma_fonts]) + Alias('install', Cygwin_fonts) # we also need a post installation script tmp_script = utils.installCygwinPostinstallScript('/tmp') postinstall_script = os.path.join(dest_dir, 'etc', 'postinstall', 'lyx.sh') -- 2.39.2