summaryrefslogtreecommitdiff
path: root/validate
diff options
context:
space:
mode:
authorBen Gamari <bgamari.foss@gmail.com>2017-04-04 21:47:05 -0400
committerBen Gamari <ben@smart-cactus.org>2017-04-04 21:47:23 -0400
commit5315223683b64c665959781112f8206fb8230a54 (patch)
tree298f3cf355ac8b1d0fb4bd01caf89afd7d1a3349 /validate
parentaf941a96f62101a6539f3cc35d82df3fd964539c (diff)
downloadhaskell-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-xvalidate2
1 files changed, 1 insertions, 1 deletions
diff --git a/validate b/validate
index 8caa0e2b89..09f4fd2f23 100755
--- a/validate
+++ b/validate
@@ -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"