diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-04-04 21:47:05 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-04-04 21:47:23 -0400 |
commit | 5315223683b64c665959781112f8206fb8230a54 (patch) | |
tree | 298f3cf355ac8b1d0fb4bd01caf89afd7d1a3349 /validate | |
parent | af941a96f62101a6539f3cc35d82df3fd964539c (diff) | |
download | haskell-5315223683b64c665959781112f8206fb8230a54.tar.gz |
validate: Clean GMP trees
For reasons unknown `validate` passed `NO_CLEAN_GMP=YES` to
`maintainer-clean`, leaving a stale `gmp.h` which causes the build to
fail in the event that the uses a tree for validating for two different
target platforms. This is quite unexpected, don't do it.
Reviewers: hvr, austin, rwbarton, dfeuer
Reviewed By: dfeuer
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D3409
Diffstat (limited to 'validate')
-rwxr-xr-x | validate | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,7 +176,7 @@ if [ $testsuite_only -eq 0 ]; then thisdir=`pwd` if [ $no_clean -eq 0 ]; then - $make maintainer-clean NO_CLEAN_GMP=YES + $make maintainer-clean INSTDIR="$thisdir/inst" |