scons/scons-1.2.0-fix-install.patch
Tomáš Chvátal 9aa3152ee9 Accepting request 333496 from home:pluskalm:branches:devel:tools:building
- Update to 2.4.0
  * Switched several core classes to use "slots", to reduce the 
    overall memory consumption in large projects (fixes #2180, 
    #2178, #2198)
  * Memoizer counting uses decorators now, instead of the old 
    metaclasses approach.
  * Fixed typo in SWIGPATH description

OBS-URL: https://build.opensuse.org/request/show/333496
OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/scons?expand=0&rev=38
2015-09-24 16:53:23 +00:00

27 lines
1.1 KiB
Diff

---
setup.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: scons-2.4.0/setup.py
===================================================================
--- scons-2.4.0.orig/setup.py
+++ scons-2.4.0/setup.py
@@ -375,7 +375,7 @@ class install_data(_install_data):
if is_win32:
dir = 'Doc'
else:
- dir = os.path.join('man', 'man1')
+ dir = os.path.join('share', 'man', 'man1')
self.data_files = [(dir, man_pages)]
man_dir = os.path.join(self.install_dir, dir)
msg = "Installed SCons man pages into %s" % man_dir
@@ -493,7 +493,7 @@ arguments = {
'docbook-xsl-1.76.1/xhtml/*',
'docbook-xsl-1.76.1/xhtml-1_1/*',
'utils/*']},
- 'data_files' : [('man/man1', man_pages)],
+ 'data_files' : [('share/man/man1', man_pages)],
'scripts' : scripts,
'cmdclass' : {'install' : install,
'install_lib' : install_lib,