diff options
author | Ian Lynagh <igloo@earth.li> | 2007-08-21 08:59:37 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-08-21 08:59:37 +0000 |
commit | da6f8e12f3888e5bfe5f9198661fab432fd4467e (patch) | |
tree | 4ec561cb51804ec0d5e3807656e5c0a5876adf8b /driver | |
parent | be9ccee64bef5ce6eaff1a1bf5acd56d3a38e56e (diff) | |
download | haskell-da6f8e12f3888e5bfe5f9198661fab432fd4467e.tar.gz |
Remove odd recursive call in the driver/ghci Makefile
I'm not sure why this was here, but it makes ghci.o get built twice on
Windows, which can cause the build to fail if it tries to link it
in the middle.
Diffstat (limited to 'driver')
-rw-r--r-- | driver/ghci/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/driver/ghci/Makefile b/driver/ghci/Makefile index 37c30c2ebe..ac6d3834fc 100644 --- a/driver/ghci/Makefile +++ b/driver/ghci/Makefile @@ -5,9 +5,6 @@ TOP=../.. include $(TOP)/mk/boilerplate.mk -# hack for ghci-inplace script, see below -INSTALLING=1 - # ----------------------------------------------------------------------------- # ghci script @@ -49,13 +46,6 @@ all:: $(EXECUTABLE_FILE) $(INPLACE_SCRIPT) endif -# don't recurse on 'make install' -# -ifeq "$(INSTALLING)" "1" -all clean distclean maintainer-clean :: - $(MAKE) INSTALLING=0 $(MFLAGS) $@ -endif - ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" ghci.res : ghci.rc ghci.ico windres --preprocessor="$(CPP) -xc -DRC_INVOKED" -o ghci.res -i ghci.rc -O coff |