PR/2981: use ${VAR:Q} instead of "${VAR}" to avoid quoting problems

This commit is contained in:
christos 1996-12-26 21:32:08 +00:00
parent 56829373e8
commit 2c8d554885
1 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.5 1996/09/30 16:01:18 ws Exp $
# $NetBSD: Makefile.inc,v 1.6 1996/12/26 21:32:08 christos Exp $
#
# NOTE: $S must correspond to the top of the 'sys' tree
SADIR= $S/lib/libsa
@ -11,28 +11,28 @@ ${SALIB}: .NOTMAIN __always_make_salib
@echo making sure the stand-alone library is up to date...
.if !defined(NO_NET)
@(cd ${SADST} && ${MAKE} -f ${SAREL}${SADIR}/Makefile \
KERNCC="${CC}" \
KERNCFLAGS="${CFLAGS}" \
SAREL="${SAREL}" \
SADIR="${SADIR}" \
EXTRACFLAGS="${EXTRACFLAGS}" libsa.a)
KERNCC=${CC:Q} \
KERNCFLAGS=${CFLAGS:Q} \
SAREL=${SAREL:Q} \
SADIR=${SADIR:Q} \
EXTRACFLAGS=${EXTRACFLAGS:Q} libsa.a)
.else
@(cd ${SADST} && ${MAKE} -f ${SAREL}${SADIR}/Makefile \
KERNCC="${CC}" \
KERNCFLAGS="${CFLAGS}" \
SAREL="${SAREL}" \
SADIR="${SADIR}" \
KERNCC=${CC:Q} \
KERNCFLAGS=${CFLAGS:Q} \
SAREL=${SAREL:Q} \
SADIR=${SADIR:Q} \
NO_NET="" \
EXTRACFLAGS="${EXTRACFLAGS}" libsa.a)
EXTRACFLAGS=${EXTRACFLAGS:Q} libsa.a)
.endif
clean:: .NOTMAIN __always_make_salib
@echo cleaning the stand-alone library objects
@(cd ${SADST} && ${MAKE} -f ${SAREL}${SADIR}/Makefile \
KERNCC="${CC}" \
KERNCFLAGS="${CFLAGS}" \
SAREL="${SAREL}" \
SADIR="${SADIR}" clean)
KERNCC=${CC:Q} \
KERNCFLAGS="${CFLAGS:Q} \
SAREL=${SAREL:Q} \
SADIR=${SADIR:Q} clean)
__always_make_salib: .NOTMAIN
@([ -d ${SADST} ] || mkdir -p ${SADST})