|
From: Jack H. <ho...@br...> - 2013-02-23 21:02:09
|
Matthias,
There are couple of logical errors in the PatchScript for libs/perlmods/locale-textdomain-pm.info
which are fixed with the following change that I committed to 10.7 tree (it still needs to be applied
to 10.5/10.6 fink as well)...
Index: locale-textdomain-pm.info
===================================================================
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/locale-textdomain-pm.info,v
retrieving revision 1.2
diff -r1.2 locale-textdomain-pm.info
4c4
< Revision: 2
---
> Revision: 3
16c16
< PatchScript: sed "s|FINKPATH|%p|" %{PatchFile} | patch -p1
---
> PatchScript: sed "s|FINKPATH|%p|g" < %{PatchFile} | patch -p1
You weren't redirecting the %{PatchFile} into sed so none of the
instances of FINKPATH were being replaced with %p. Also you need to
use g at the end of the sed construct to allow the second instance
of FINKPATH in the patch to be replaced with %p.
Jack
ps Currently the XS version isn't being built but this change fixes this.
|