mirror of https://github.com/odrling/Aegisub
* 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:
parent
667f950176
commit
e1effd407d
|
@ -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/"
|
||||
|
|
Loading…
Reference in New Issue