diff options
author | Ian Lynagh <igloo@earth.li> | 2008-06-26 18:11:34 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-06-26 18:11:34 +0000 |
commit | abd113f06ebf3ac29f852e80c5a8c0060f979202 (patch) | |
tree | 412d2dda2c267143f290454a385f835debede931 /libraries/Makefile | |
parent | 6c48b36634d407bffc72a764d302f54da6748824 (diff) | |
download | haskell-abd113f06ebf3ac29f852e80c5a8c0060f979202.tar.gz |
Absolutify a path
When building ghc-prim/Setup we weren't putting the hi files in the
right place.
Diffstat (limited to 'libraries/Makefile')
-rw-r--r-- | libraries/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Makefile b/libraries/Makefile index 70aea21cbf..a258ca3cac 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -171,7 +171,7 @@ ifeq "$(ghc_ge_605)" "NO" CABAL_GHC_FLAGS += -cpp endif -BOOTSTRAPPING_FLAGS = $(CABAL_GHC_FLAGS) -DCABAL_VERSION=1,3 -odir $(HERE_ABS)/bootstrapping -hidir bootstrapping -i$(HERE_ABS)/Cabal -i$(HERE_ABS)/filepath +BOOTSTRAPPING_FLAGS = $(CABAL_GHC_FLAGS) -DCABAL_VERSION=1,3 -odir $(HERE_ABS)/bootstrapping -hidir $(HERE_ABS)/bootstrapping -i$(HERE_ABS)/Cabal -i$(HERE_ABS)/filepath # We use -main-is so that GHC doesn't get confused and think # Main.hi/Main.o from cabal belongs to ghc-prim/Setup, or vice-versa. |