diff options
author | Ian Lynagh <igloo@earth.li> | 2008-08-27 18:50:24 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-08-27 18:50:24 +0000 |
commit | b980fbf46aad86bab37a628cb8dc7f7602d7452d (patch) | |
tree | 01fc9c3327cdff951f4ab8b1d2e277b1aff02b71 /libraries | |
parent | 1db693badb37e35cb6ed0170e931d61b5234e863 (diff) | |
download | haskell-b980fbf46aad86bab37a628cb8dc7f7602d7452d.tar.gz |
Don't fail if libraries/bootstrapping already exists
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Makefile b/libraries/Makefile index 7459bc5a7d..914c35106d 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -164,7 +164,7 @@ BOOTSTRAPPING_FLAGS = $(CABAL_GHC_FLAGS) -DCABAL_VERSION=$(CABAL_VERSION) -odir boot: ifBuildable/ifBuildable cabal-bin bootstrapping.conf cabal-bin: cabal-bin.hs - mkdir bootstrapping + -mkdir bootstrapping $(GHC) $(BOOTSTRAPPING_FLAGS) --make cabal-bin -o cabal-bin bootstrapping.conf: cabal-bin |