[perl-Archive-Zip/f21] Improve sharpbang fix

Jitka Plesnikova jplesnik at fedoraproject.org
Tue Feb 10 12:31:14 UTC 2015


commit 2c69a653ae4fb496681e1120c2594c697bd84a2e
Author: Petr Písař <ppisar at redhat.com>
Date:   Thu Jan 15 12:40:23 2015 +0100

    Improve sharpbang fix

 perl-Archive-Zip.spec |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/perl-Archive-Zip.spec b/perl-Archive-Zip.spec
index e24b232..46ac779 100644
--- a/perl-Archive-Zip.spec
+++ b/perl-Archive-Zip.spec
@@ -65,8 +65,11 @@ existing Zip files, or from existing directories, files, or strings.
 %prep
 %setup -q -n Archive-Zip-%{version}
 %patch0 -p1
-perl -pi -e 's|^#!/bin/perl|#!%{__perl}|' examples/*.pl
-perl -pi -e 's|^#!/usr/local/bin/perl|#!%{__perl}|' examples/selfex.pl
+perl -MConfig -pi -e 's|^#!/usr/local/bin/perl|$Config{startperl}|' \
+    examples/selfex.pl
+for F in examples/*.pl; do
+    perl -MExtUtils::MakeMaker -e "ExtUtils::MM_Unix->fixin(q{$F})"
+done
 
 
 %build
@@ -94,6 +97,7 @@ make test
 %changelog
 * Thu Jan 15 2015 Petr Pisar <ppisar at redhat.com> - 1.39-2
 - Correct dependencies
+- Improve sharpbang fix
 
 * Wed Oct 22 2014 Jitka Plesnikova <jplesnik at redhat.com> - 1.39-1
 - 1.39 bump



More information about the perl-devel mailing list