SHA256
1
0
forked from pool/xfconf

Accepting request 54363 from X11:xfce:factory

thx

OBS-URL: https://build.opensuse.org/request/show/54363
OBS-URL: https://build.opensuse.org/package/show/X11:xfce/xfconf?expand=0&rev=22
This commit is contained in:
Pavol Rusnak
2010-12-03 01:57:52 +00:00
committed by Git OBS Bridge
parent e42be469f3
commit bfc9a63b18
5 changed files with 123 additions and 60 deletions

View File

@@ -0,0 +1,22 @@
diff -ur xfconf-4.7.3.orig/xfconf-perl/Makefile.PL.in xfconf-4.7.3/xfconf-perl/Makefile.PL.in
--- xfconf-4.7.3.orig/xfconf-perl/Makefile.PL.in 2010-09-05 15:16:31.000000000 +0200
+++ xfconf-4.7.3/xfconf-perl/Makefile.PL.in 2010-11-24 00:34:40.000000000 +0100
@@ -98,6 +98,18 @@
$xfconf->get_makefile_vars,
);
+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;
sub MY::postamble
{