* Favour '/usr/bin/perl' over 'perl' to ensure the base perl is always used. (it's required)

Originally committed to SVN as r2875.
This commit is contained in:
Amar Takhar 2009-04-29 06:50:08 +00:00
parent 667f950176
commit e1effd407d
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ if ! test -d "${PKG_DIR}"; then
exit 1;
fi
if ! perl -e 'require Mac::Finder::DSStore' > /dev/null 2>&1; then
if ! /usr/bin/perl -e 'require Mac::Finder::DSStore' > /dev/null 2>&1; then
echo
echo "Perl Mac::Finder::DSStore is required to build a dmg."
echo "Please get it from http://freehg.org/u/wiml/dsstore/"