Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-6]: src/share/mk Pull up revision 1.28 (requested by tron in ti...
details: https://anonhg.NetBSD.org/src/rev/e6f1eae25ef2
branches: netbsd-1-6
changeset: 530448:e6f1eae25ef2
user: grant <grant%NetBSD.org@localhost>
date: Tue Jun 24 12:45:48 2003 +0000
description:
Pull up revision 1.28 (requested by tron in ticket #1337):
Fix "clean" rule to honor "CLEANFILES" variable.
diffstat:
share/mk/bsd.info.mk | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diffs (23 lines):
diff -r afbbf6a861f9 -r e6f1eae25ef2 share/mk/bsd.info.mk
--- a/share/mk/bsd.info.mk Tue Jun 24 10:07:59 2003 +0000
+++ b/share/mk/bsd.info.mk Tue Jun 24 12:45:48 2003 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.info.mk,v 1.26 2002/03/01 15:42:10 pk Exp $
+# $NetBSD: bsd.info.mk,v 1.26.2.1 2003/06/24 12:45:48 grant Exp $
.include <bsd.init.mk>
@@ -77,9 +77,11 @@
.endif # ${MKINFO} != "no"
##### Clean rules
+CLEANFILES+= ${INFOFILES}
+
cleaninfo:
-.if !empty(INFOFILES)
- rm -f ${INFOFILES}
+.if !empty(CLEANFILES)
+ rm -f ${CLEANFILES}
.endif
##### Pull in related .mk logic
Home |
Main Index |
Thread Index |
Old Index