From 5f6d63954eb003d892e31726e91ab118a4606f42 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Thu, 28 Sep 2006 04:43:45 +0000 Subject: [PATCH] Scons: cygwin packaging fixes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@15177 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/scons/SConstruct | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 9bde298450..56ac2a2c95 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -2084,18 +2084,18 @@ if 'install' in targets: if platform_name == 'cygwin': # cygwin packaging requires a file /usr/share/doc/Cygwin/foot-vendor-suffix.README - Cygwin_README = os.path.join(dest_prefix_dir, 'doc', 'Cygwin', - '%s%s.README' % (package, package_cygwin_version)) + Cygwin_README = os.path.join(dest_prefix_dir, 'share', 'doc', 'Cygwin', + '%s-%s.README' % (package, package_cygwin_version)) env.InstallAs(Cygwin_README, os.path.join(env.subst('$TOP_SRCDIR'), 'README.cygwin')) Alias('install', Cygwin_README) # also a directory /usr/share/doc/lyx for README etc - Cygwin_Doc = os.path.join(dest_prefix_dir, 'doc', package) + Cygwin_Doc = os.path.join(dest_prefix_dir, 'share', 'doc', package) env.Install(Cygwin_Doc, [os.path.join(env.subst('$TOP_SRCDIR'), x) for x in \ ['INSTALL', 'README', 'README.Cygwin', 'RELEASE-NOTES', 'COPYING', 'ANNOUNCE']]) Alias('install', Cygwin_Doc) # cygwin fonts also need to be installed - Cygwin_fonts = os.path.join(share_dest_dir, 'font') + Cygwin_fonts = os.path.join(share_dest_dir, 'fonts') env.Install(Cygwin_fonts, [env.subst('$TOP_SRCDIR/development/Win32/packaging/bakoma/%s' % file) \ for file in win32_bakoma_fonts])