tags 752811 + pending
thanks
Dear maintainer,
I've uploaded NMU by gregor for redhat-cluster (versioned as
3.1.8-1.2) to DELAYED/5. Please feel free to tell me if I should delay
it longer.
Note that file mode changes aren't represented by 'diff' and
debian/libccs-perl.install needs to be made executable after diff
application.
Regards,
dam
diff -Nru redhat-cluster-3.1.8/debian/changelog redhat-cluster-3.1.8/debian/changelog
--- redhat-cluster-3.1.8/debian/changelog 2013-01-11 20:40:29.000000000 +0200
+++ redhat-cluster-3.1.8/debian/changelog 2014-08-04 15:35:20.000000000 +0300
@@ -1,3 +1,14 @@
+redhat-cluster (3.1.8-1.2) unstable; urgency=medium
+
+ [ gregor herrmann ]
+ * Non-maintainer upload.
+ * Fix "hardcodes /usr/lib/perl5":
+ make debian/libccs-perl.install executable and use $Config{vendorarch} to
+ get dynamic path
+ (Closes: #752811)
+
+ -- Damyan Ivanov <[email protected]> Mon, 04 Aug 2014 12:34:59 +0000
+
redhat-cluster (3.1.8-1.1) unstable; urgency=low
* Non-maintainer upload.
diff -Nru redhat-cluster-3.1.8/debian/libccs-perl.install redhat-cluster-3.1.8/debian/libccs-perl.install
--- redhat-cluster-3.1.8/debian/libccs-perl.install 2013-01-11 20:40:29.000000000 +0200
+++ redhat-cluster-3.1.8/debian/libccs-perl.install 2014-08-04 15:34:49.000000000 +0300
@@ -1,3 +1,9 @@
-usr/lib/perl5/auto/Cluster/CCS/CCS.so
-usr/lib/perl5/Cluster/CCS.pm
-usr/share/man/man3/*CCS.3pm*
+#!/usr/bin/perl -w
+
+use Config;
+
+my $vendorarch = substr($Config{vendorarch}, 1);
+
+print "$vendorarch/auto/Cluster/CCS/CCS.so\n";
+print "$vendorarch/Cluster/CCS.pm\n";
+print "usr/share/man/man3/*CCS.3pm*\n";