diff options
author | Ian Lynagh <igloo@earth.li> | 2008-08-10 17:30:53 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-08-10 17:30:53 +0000 |
commit | 6830e258b81ee97a0b7ed2ecc65695f616adeea3 (patch) | |
tree | 1063977fcd9d1bdfade3b3330e9d0c59efb90705 /libraries/Makefile | |
parent | 5d892c8461b3af2174f13be6516b245bda8ae29e (diff) | |
download | haskell-6830e258b81ee97a0b7ed2ecc65695f616adeea3.tar.gz |
Don't give the -d flag to rm; it goes wrong on Windows
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 50cd5184c2..606d102bc4 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -312,7 +312,7 @@ clean: $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR)) -cd filepath && $(CABAL) clean --distpref=dist-bootstrapping -cd Cabal && $(CABAL) clean --distpref=dist-bootstrapping -cd hpc && $(CABAL) clean --distpref=dist-bootstrapping - $(RM) -rfd bootstrapping + $(RM) -rf bootstrapping $(RM) -f bootstrapping.conf bootstrapping.conf.old $(RM) -f bootstrapping.conf.tmp bootstrapping.conf.tmp.old $(RM) -f cabal-bin cabal-bin.exe |