Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/crunch/crunchgen Move check of USE_NEW_TOOLCHAIN so ...



details:   https://anonhg.NetBSD.org/src/rev/61353d924908
branches:  trunk
changeset: 525384:61353d924908
user:      tv <tv%NetBSD.org@localhost>
date:      Wed Apr 10 17:29:25 2002 +0000

description:
Move check of USE_NEW_TOOLCHAIN so it'll actually be *defined* for a native
crunchgen binary where appropriate.

diffstat:

 usr.bin/crunch/crunchgen/Makefile |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (27 lines):

diff -r eaf3423034a4 -r 61353d924908 usr.bin/crunch/crunchgen/Makefile
--- a/usr.bin/crunch/crunchgen/Makefile Wed Apr 10 17:28:13 2002 +0000
+++ b/usr.bin/crunch/crunchgen/Makefile Wed Apr 10 17:29:25 2002 +0000
@@ -1,17 +1,17 @@
-#      $NetBSD: Makefile,v 1.7 2001/11/12 18:53:40 tv Exp $
+#      $NetBSD: Makefile,v 1.8 2002/04/10 17:29:25 tv Exp $
 
 PROG=          crunchgen
 SRCS=          crunchgen.c crunched_skel.c
 CLEANFILES+=   crunched_skel.c
 
-# XXX This should go away and the code cleaned up with all ports are converted
-.if defined(USE_NEW_TOOLCHAIN)
-CPPFLAGS+=     -DNEW_TOOLCHAIN
-.endif
-
 crunched_skel.c: mkskel.sh crunched_main.c
        sh ${.ALLSRC} >${.TARGET}
 
 .ifndef HOSTPROG
 .include <bsd.prog.mk>
 .endif
+
+# XXX This should go away and the code cleaned up with all ports are converted
+.if defined(USE_NEW_TOOLCHAIN)
+CPPFLAGS+=     -DNEW_TOOLCHAIN
+.endif



Home | Main Index | Thread Index | Old Index