From 69540b16367f4d841f0721988f34fb59daf84305 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 30 Sep 2002 10:17:38 +0000 Subject: [PATCH] [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. --- mk/suffix.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) $< -- 1.7.10.4