[commit: ghc] master: validate: Clean GMP trees (5315223)

git at git.haskell.org git at git.haskell.org
Wed Apr 5 02:23:14 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/5315223683b64c665959781112f8206fb8230a54/ghc

>---------------------------------------------------------------

commit 5315223683b64c665959781112f8206fb8230a54
Author: Ben Gamari <bgamari.foss at gmail.com>
Date:   Tue Apr 4 21:47:05 2017 -0400

    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


>---------------------------------------------------------------

5315223683b64c665959781112f8206fb8230a54
 validate | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/validate b/validate
index 8caa0e2..09f4fd2 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"
 



More information about the ghc-commits mailing list