[commit: nofib] master: fibheaps/Makefile: remove some weird character (dd21f6b)

git at git.haskell.org git at git.haskell.org
Wed Mar 15 21:50:12 UTC 2017


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

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/dd21f6bb1da78953f6a7b6af047a4ba87f10ca69/nofib

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

commit dd21f6bb1da78953f6a7b6af047a4ba87f10ca69
Author: Michal Terepeta <michal.terepeta at gmail.com>
Date:   Wed Mar 15 17:48:15 2017 -0400

    fibheaps/Makefile: remove some weird character
    
    Summary:
    Because it's at the beginning of the line with `SRC_HC_OPTS`, it
    causes `make` ignore those options. This commit removes that character
    and makes everything work.
    
    Signed-off-by: Michal Terepeta <michal.terepeta at gmail.com>
    
    Test Plan: manually verify that the options are passed to GHC
    
    Reviewers: bgamari, dfeuer
    
    Reviewed By: dfeuer
    
    Subscribers: dfeuer
    
    Differential Revision: https://phabricator.haskell.org/D3344


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

dd21f6bb1da78953f6a7b6af047a4ba87f10ca69
 spectral/fibheaps/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spectral/fibheaps/Makefile b/spectral/fibheaps/Makefile
index 28c8022..bff8208 100644
--- a/spectral/fibheaps/Makefile
+++ b/spectral/fibheaps/Makefile
@@ -1,7 +1,7 @@
 TOP = ../..
 include $(TOP)/mk/boilerplate.mk
 
-​SRC_HC_OPTS += -package array
+SRC_HC_OPTS += -package array
 
 FAST_OPTS = 5000
 NORM_OPTS = 5000



More information about the ghc-commits mailing list