2010-12-05 22:11:15 +00:00
|
|
|
Index: xfconf-4.7.4/xfconf-perl/Makefile.PL.in
|
|
|
|
===================================================================
|
|
|
|
--- xfconf-4.7.4.orig/xfconf-perl/Makefile.PL.in
|
|
|
|
+++ xfconf-4.7.4/xfconf-perl/Makefile.PL.in
|
|
|
|
@@ -98,6 +98,18 @@ WriteMakefile(
|
2010-12-03 01:57:52 +00:00
|
|
|
$xfconf->get_makefile_vars,
|
|
|
|
);
|
2012-03-31 09:42:56 +00:00
|
|
|
|
2010-12-03 01:57:52 +00:00
|
|
|
+rename "Makefile.perl", "Makefile.perl.orig"
|
|
|
|
+ or die "Cannot rename: $!";
|
|
|
|
+open IN, "<Makefile.perl.orig"
|
|
|
|
+ or die "Cannot open: $!";
|
|
|
|
+open OUT, ">Makefile.perl"
|
|
|
|
+ or die "Cannot create: $!";
|
|
|
|
+while (<IN>)
|
|
|
|
+{
|
|
|
|
+ print OUT $_ unless /^LD_RUN_PATH /;
|
|
|
|
+}
|
|
|
|
+close IN;
|
|
|
|
+close OUT;
|
2012-03-31 09:42:56 +00:00
|
|
|
|
2010-12-03 01:57:52 +00:00
|
|
|
sub MY::postamble
|
|
|
|
{
|