chicken-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Chicken-hackers] [PATCH] don't rm build* files on "make confclean"


From: Felix
Subject: [Chicken-hackers] [PATCH] don't rm build* files on "make confclean"
Date: Mon, 07 Nov 2011 13:27:13 +0100 (CET)

... otherwise building from a tarball will not be possible without an
installed chicken if the user decides to rebuild with a different
configuration. With this patch the files are deleted on "make
spotless".
>From 69512993cd2de54e7373ca82bc5e2a58eee8ad76 Mon Sep 17 00:00:00 2001
From: felix <address@hidden>
Date: Mon, 7 Nov 2011 13:25:34 +0100
Subject: [PATCH] don't remove build-info files on make confclean or it is not 
possible to build from a tarball without preinstalled chicken

---
 rules.make |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/rules.make b/rules.make
index 7383e7f..929b0a3 100644
--- a/rules.make
+++ b/rules.make
@@ -634,11 +634,12 @@ endif
 
 confclean:
        -$(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) \
-         chicken-config.h chicken-defaults.h chicken-install.rc 
chicken-uninstall.rc \
-         buildtag.h buildid buildbranch
+         chicken-config.h chicken-defaults.h chicken-install.rc 
chicken-uninstall.rc
 
 spotless: distclean testclean
-       -$(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) $(DISTFILES)
+       -$(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) $(DISTFILES) \
+         buildtag.h buildid buildbranch
+
 
 distclean: clean confclean
 
-- 
1.6.0.4


reply via email to

[Prev in Thread] Current Thread [Next in Thread]