Patch for unsermake _MANS install handling.
Michael Pyne
pynm0001 at comcast.net
Sun Dec 12 09:57:08 GMT 2004
Hi all,
unsermake currently fails when installed kdeextragear-libs-1 for me due to an
incorrect install rule for _MANS sections in the Makefile.am files (there's
an extra @ character).
Is it alright for me to apply this fix?
Index: amfile.py
===================================================================
RCS file: /home/kde/kdenonbeta/unsermake/amfile.py,v
retrieving revision 1.39
diff -u -3 -p -r1.39 amfile.py
--- amfile.py 4 Dec 2004 21:14:19 -0000 1.39
+++ amfile.py 12 Dec 2004 09:53:22 -0000
@@ -1167,7 +1167,7 @@ class AMFile:
else:
assert(match.group(1)[-1] in self.mansections)
manfilename = '@basenamenoext at .%s' % match.group(1)[-1]
- install_rules += ['@$(INSTALL_DATA) @file@ %s/%s' % (installdir,
manfilename)]
+ install_rules += ['$(INSTALL_DATA) @file@ %s/%s' % (installdir,
manfilename)]
uninstalldir = '$(DESTDIR)$(%sdir)' % dirprefix
if match.group(1) == "man":
Regards,
- Michael Pyne
More information about the kde-core-devel
mailing list