diff options
author | Mateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk> | 2014-11-17 19:15:59 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-11-17 19:15:59 -0600 |
commit | d997ca85a33f34f9f461096eb1b25d5f25b53072 (patch) | |
tree | c712a7058e5034231dcd3e935bf8c2853ec3a260 /validate | |
parent | 0515055abfcf5957d7a957607b4785320627fd65 (diff) | |
download | haskell-d997ca85a33f34f9f461096eb1b25d5f25b53072.tar.gz |
Don't use absolute paths for perl in validate
Summary: This will *not* work on NixOS for example.
Reviewers: austin
Reviewed By: austin
Subscribers: thomie, carter
Differential Revision: https://phabricator.haskell.org/D479
GHC Trac Issues: #9057
Diffstat (limited to 'validate')
-rwxr-xr-x | validate | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -157,9 +157,9 @@ if [ $no_clean -eq 0 ]; then fi if [ $use_dph -eq 1 ]; then - /usr/bin/perl -w boot --validate --required-tag=dph + perl -w boot --validate --required-tag=dph else - /usr/bin/perl -w boot --validate + perl -w boot --validate fi ./configure --prefix="$INSTDIR" $config_args fi @@ -299,4 +299,3 @@ Please fix them before pushing/sending patches. EOF exit 1 fi - |