Source-Changes-HG archive

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

[src/trunk]: src/share/mk use CC="${CC}" and NM="${NM}" so that, eg, "CC=cc -...



details:   https://anonhg.NetBSD.org/src/rev/f7f6c8c4f88b
branches:  trunk
changeset: 515911:f7f6c8c4f88b
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Oct 08 10:01:35 2001 +0000

description:
use CC="${CC}" and NM="${NM}" so that, eg, "CC=cc -m64" works.

diffstat:

 share/mk/bsd.own.mk |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (24 lines):

diff -r e73ea0b0ddf0 -r f7f6c8c4f88b share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Mon Oct 08 09:01:29 2001 +0000
+++ b/share/mk/bsd.own.mk       Mon Oct 08 10:01:35 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.184 2001/10/04 15:52:59 tv Exp $
+#      $NetBSD: bsd.own.mk,v 1.185 2001/10/08 10:01:35 mrg Exp $
 
 .if !defined(_BSD_OWN_MK_)
 _BSD_OWN_MK_=1
@@ -51,11 +51,11 @@
 INSTALL_INFO=  ${TOOLDIR}/bin/install-info
 LD=            ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-ld
 LEX=           ${TOOLDIR}/bin/lex
-LINT=          CC=${CC} ${TOOLDIR}/bin/lint
-LORDER=                NM=${NM} ${TOOLDIR}/bin/lorder
+LINT=          CC="${CC}" ${TOOLDIR}/bin/lint
+LORDER=                NM="${NM}" ${TOOLDIR}/bin/lorder
 #MAKE=         ${TOOLDIR}/bin/bmake
 MAKEINFO=      ${TOOLDIR}/bin/makeinfo
-MKDEP=         CC=${CC} ${TOOLDIR}/bin/mkdep
+MKDEP=         CC="${CC}" ${TOOLDIR}/bin/mkdep
 #MKLOCALE=     ${TOOLDIR}/bin/mklocale
 NM=            ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-nm
 #NROFF=                ${TOOLDIR}/bin/nroff -Tascii



Home | Main Index | Thread Index | Old Index