Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
aballier 08/10/19 17:29:14
Added: dvbcut-0.5.4-scons.patch
Log:
Add a patch by Daniel Pielmeier <daniel.pielmeier@...> to fix build when /usr/local does not exist. Bug #230095
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.6 x86_64)
Revision Changes Path
1.1 media-video/dvbcut/files/dvbcut-0.5.4-scons.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvbcut/files/dvbcut-0.5.4-scons.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvbcut/files/dvbcut-0.5.4-scons.patch?rev=1.1&content-type=text/plain
Index: dvbcut-0.5.4-scons.patch
===================================================================
--- SConstruct 2007-04-13 19:36:40.000000000 +0200
+++ SConstruct 2008-06-29 22:38:32.000000000 +0200
@@ -7,9 +7,9 @@
opts=Options()
-opt=opts.Add(PathOption('PREFIX', 'Directory to install under', '/usr/local'))
+opt=opts.Add(PathOption('PREFIX', 'Directory to install under', '/usr'))
opt=opts.Add(PathOption('BINDIR', 'Directory to install under', os.path.join('$PREFIX','bin')))
-opt=opts.Add(PathOption('MANPATH', 'Directory to install under', os.path.join('$PREFIX','man')))
+opt=opts.Add(PathOption('MANPATH', 'Directory to install under', os.path.join('$PREFIX','share/man')))
### DEBUG MODE
|
|