diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-30 22:00:21 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-30 22:00:21 +0000 |
commit | 0ef6ba7b28187a4bf5309f9702eeaf53a281204b (patch) | |
tree | 653c84d5647c6efa71836dbd7a7231b2ae725988 /mk | |
parent | d5629b335a3254612887be8091b76dbdf2b582f8 (diff) | |
download | haskell-0ef6ba7b28187a4bf5309f9702eeaf53a281204b.tar.gz |
Quote commands that we run, so they work if there are space in their paths
I've also added some missing $s to some makefiles. These aren't
technically necessary, but it's nice to be consistent.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tree.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/tree.mk b/mk/tree.mk index 4d1416a3ef..b7d2875ad3 100644 --- a/mk/tree.mk +++ b/mk/tree.mk @@ -46,5 +46,6 @@ INPLACE_BIN = $(INPLACE)/bin INPLACE_LIB = $(INPLACE)/lib INPLACE_MINGW = $(INPLACE)/mingw -RM = rm -f +RM = rm +RM_OPTS = -f |