[project @ 2002-09-30 10:17:38 by simonmar]
authorsimonmar <unknown>
Mon, 30 Sep 2002 10:17:38 +0000 (10:17 +0000)
committersimonmar <unknown>
Mon, 30 Sep 2002 10:17:38 +0000 (10:17 +0000)
Replace
.PRECIOUS: %.hs
with
.SECONDARY: %.hs

.PRECIOUS is the wrong thing: it keeps the file when 'make' is
killed, as well as preventing automatic deletion.  .SECONDARY just
prevents the automatic deletion.

Spotted by: Ian Lynagh.

mk/suffix.mk

index 9ac554d..6a0a445 100644 (file)
@@ -101,7 +101,7 @@ endif # BootingViaC
 #-----------------------------------------------------------------------------
 # Happy Suffix Rules
 #
-.PRECIOUS: %.hs
+.SECONDARY: %.hs
 
 %.hs : %.ly
        $(HAPPY) $(HAPPY_OPTS) $<