From: Marcus Ramberg Date: Wed, 22 Aug 2007 08:22:50 +0000 (+0000) Subject: Kill resource forks X-Git-Tag: 5.7099_04~149 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=a9835938227c2c9f482845f93bae8be1ea00b578;hp=328f67a76b568a93945d2ccd4f1d7ffccb1c65dd Kill resource forks --- diff --git a/Makefile.PL b/Makefile.PL index e9b18eb..825099f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -31,6 +31,12 @@ requires 'Tree::Simple::Visitor::FindByPath'; requires 'URI' => '1.35'; requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness +if ($^O eq 'darwin') { + makemaker_args(dist => { PREOP => 'if [ "$$COPY_EXTENDED_ATTRIBUTES_DISABLE" != "true" ]; then'. + ' echo "you must set the ENV variable COPY_EXTENDED_ATTRIBUTES_DISABLE to true,"; '. + ' echo "to avoid getting resource forks in your dist."; exit 255; fi' }); +} + if (-e 'inc/.author') { build_requires 'Test::Perl::Critic'; }