Mailing List Archive

svn commit: r1759467 - /perl/modperl/trunk/Makefile.PL
Author: stevehay
Date: Tue Sep 6 17:24:07 2016
New Revision: 1759467

URL: http://svn.apache.org/viewvc?rev=1759467&view=rev
Log:
Update Makefile.PL as per r1759432

Modified:
perl/modperl/trunk/Makefile.PL

Modified: perl/modperl/trunk/Makefile.PL
URL: http://svn.apache.org/viewvc/perl/modperl/trunk/Makefile.PL?rev=1759467&r1=1759466&r2=1759467&view=diff
==============================================================================
--- perl/modperl/trunk/Makefile.PL (original)
+++ perl/modperl/trunk/Makefile.PL Tue Sep 6 17:24:07 2016
@@ -889,19 +889,21 @@ rpm: dist
EOF
}

- $string .= <<'EOF';
+ my $q = (WIN32 ? '"' : "'");
+
+ $string .= <<"EOF";
mydist : Apache-Test/META.yml mod_perl.spec manifest tardist

mod_perl.spec: build/make_rpm_spec
- $(PERL) build/make_rpm_spec
+ \$(PERL) build/make_rpm_spec

Apache-Test/META.yml:
cd Apache-Test && make metafile

tag :
- svn copy https://svn.apache.org/repos/asf/perl/modperl/trunk https://svn.apache.org/repos/asf/perl/modperl/branches/release/$(VERSION_SYM)
- svn copy https://svn.apache.org/repos/asf/perl/modperl/branches/release/$(VERSION_SYM) https://svn.apache.org/repos/asf/perl/modperl/tags/$(VERSION_SYM)
- svn copy https://svn.apache.org/repos/asf/perl/modperl/docs/trunk https://svn.apache.org/repos/asf/perl/modperl/docs/tags/$(VERSION_SYM)
+ svn copy -m $q\$(VERSION_SYM) release branch$q https://svn.apache.org/repos/asf/perl/modperl/trunk https://svn.apache.org/repos/asf/perl/modperl/branches/release/\$(VERSION_SYM)
+ svn copy -m $q\$(VERSION_SYM) tag$q https://svn.apache.org/repos/asf/perl/modperl/branches/release/\$(VERSION_SYM) https://svn.apache.org/repos/asf/perl/modperl/tags/\$(VERSION_SYM)
+ svn copy -m $q\$(VERSION_SYM) tag$q https://svn.apache.org/repos/asf/perl/modperl/docs/trunk https://svn.apache.org/repos/asf/perl/modperl/docs/tags/\$(VERSION_SYM)
EOF

return $string;