diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-05-22 11:50:55 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-05-22 11:51:44 -0400 |
commit | 0440af6abe592c2366d302d603664fe763ad0828 (patch) | |
tree | 4bcbd09d62c9de9a439b2c7723dc7370f3338da3 /validate | |
parent | d6686a254293442a633482eae7ca78be968bef58 (diff) | |
download | haskell-0440af6abe592c2366d302d603664fe763ad0828.tar.gz |
Rewrite boot in Python
Test Plan: Validate
Reviewers: hvr, austin
Subscribers: rwbarton, thomie, erikd
Differential Revision: https://phabricator.haskell.org/D3567
Diffstat (limited to 'validate')
-rwxr-xr-x | validate | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -181,9 +181,9 @@ if [ $no_clean -eq 0 ]; then INSTDIR="$thisdir/inst" if [ $use_dph -eq 1 ]; then - perl -w boot --validate --required-tag=dph + python3 ./boot --validate --required-tag=dph else - perl -w boot --validate + python3 ./boot --validate fi ./configure --prefix="$INSTDIR" $config_args fi |