[Catalyst-commits] r10884 - Catalyst-Runtime/5.80/trunk
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Tue Jul 14 20:25:03 GMT 2009
Author: t0m
Date: 2009-07-14 20:25:03 +0000 (Tue, 14 Jul 2009)
New Revision: 10884
Modified:
Catalyst-Runtime/5.80/trunk/Makefile.PL
Log:
Fix Makefile.PL to actually do the right thing on Lepoard (alledgedly), and encourage someone to contribute to maintaining our protection against Apple :)
Modified: Catalyst-Runtime/5.80/trunk/Makefile.PL
===================================================================
--- Catalyst-Runtime/5.80/trunk/Makefile.PL 2009-07-14 19:29:50 UTC (rev 10883)
+++ Catalyst-Runtime/5.80/trunk/Makefile.PL 2009-07-14 20:25:03 UTC (rev 10884)
@@ -134,7 +134,8 @@
# TAR on 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE
# On 10.5 (Leopard) it wants COPYFILE_DISABLE
- my $attr = $osx_ver eq '10.5' ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE';
+ die("Oh, you got Snow Lepoard, snazzy. Please read the man page for tar to find out if Apple renamed COPYFILE_DISABLE again and fix this Makefile.PL please?\n") if $osx_ver =~ /^10.6/;
+ my $attr = $osx_ver =~ /^10.5/ ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE';
makemaker_args(dist => { PREOP => qq{\@if [ "\$\$$attr" != "true" ]; then}.
qq{ echo "You must set the ENV variable $attr to true,"; }.
More information about the Catalyst-commits
mailing list