[project @ 2000-05-10 11:56:15 by simonmar]
authorsimonmar <unknown>
Wed, 10 May 2000 11:56:15 +0000 (11:56 +0000)
committersimonmar <unknown>
Wed, 10 May 2000 11:56:15 +0000 (11:56 +0000)
Put back the '$(RM) $@' in the rule for building library modules when
splitting, until we fix this problem properly.

mk/target.mk

index 23adc85..81f4634 100644 (file)
@@ -387,7 +387,7 @@ endef
 # Extra stuff for compiling Haskell files with $(SplitObjs):
 
 HC_SPLIT_PRE= \
-if [ ! -d $(basename $@) ]; then mkdir $(basename $@); else \
+ $(RM) $@ ; if [ ! -d $(basename $@) ]; then mkdir $(basename $@); else \
  $(FIND) $(basename $@) -name '*.$(way_)o' -print | xargs $(RM) __rm_food ; fi
 HC_SPLIT_POST  = touch $@