From: simonmar Date: Mon, 30 Sep 2002 10:17:38 +0000 (+0000) Subject: [project @ 2002-09-30 10:17:38 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~1611 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=69540b16367f4d841f0721988f34fb59daf84305 [project @ 2002-09-30 10:17:38 by simonmar] 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. --- diff --git a/mk/suffix.mk b/mk/suffix.mk index 9ac554d..6a0a445 100644 --- a/mk/suffix.mk +++ b/mk/suffix.mk @@ -101,7 +101,7 @@ endif # BootingViaC #----------------------------------------------------------------------------- # Happy Suffix Rules # -.PRECIOUS: %.hs +.SECONDARY: %.hs %.hs : %.ly $(HAPPY) $(HAPPY_OPTS) $<