~ chicken-core (chicken-5) 0ce9811da76a3311d45a7620c46b15b5117dec2e
commit 0ce9811da76a3311d45a7620c46b15b5117dec2e
Author: Peter Bex <Peter.Bex@xs4all.nl>
AuthorDate: Sun Sep 5 22:08:33 2010 +0200
Commit: Peter Bex <Peter.Bex@xs4all.nl>
CommitDate: Sun Sep 5 22:08:33 2010 +0200
Get rid of recursive reference in DISTFILES to itself ;)
diff --git a/rules.make b/rules.make
index 33fec61a..b3c54f2f 100644
--- a/rules.make
+++ b/rules.make
@@ -82,7 +82,7 @@ DISTFILES = $(LIBCHICKEN_OBJECTS:=.c) \
$(IMPORT_LIBRARIES:=.import.c) \
posixunix.c posixwin.c
# Remove the duplicate $(POSIXFILE) entry:
-DISTFILES = $(sort $(DISTFILES))
+DISTFILES := $(sort $(DISTFILES))
# library objects
Trap