use ' not " when passing variables to a sub-make. pr#1199/pr#1296
This commit is contained in:
parent
08dfd04e76
commit
663808dfc5
@ -1,4 +1,4 @@
|
|||||||
# $NetBSD: Makefile.inc,v 1.4 1996/05/11 16:13:31 mycroft Exp $
|
# $NetBSD: Makefile.inc,v 1.5 1996/05/20 17:23:59 mrg Exp $
|
||||||
#
|
#
|
||||||
# NOTE: $S must correspond to the top of the 'sys' tree
|
# NOTE: $S must correspond to the top of the 'sys' tree
|
||||||
|
|
||||||
@ -11,11 +11,11 @@ COMPATLIB_PROF= ${COMPATDST}/libcompat_p.a
|
|||||||
|
|
||||||
COMPATMAKE= \
|
COMPATMAKE= \
|
||||||
cd ${COMPATDST} && ${MAKE} -f ${COMPATREL}${COMPATDIR}/Makefile \
|
cd ${COMPATDST} && ${MAKE} -f ${COMPATREL}${COMPATDIR}/Makefile \
|
||||||
CC="${CC}" CFLAGS="${CFLAGS}" \
|
CC='${CC}' CFLAGS='${CFLAGS}' \
|
||||||
LD="${LD}" \
|
LD='${LD}' \
|
||||||
COMPATCPPFLAGS="${CPPFLAGS}" \
|
COMPATCPPFLAGS='${CPPFLAGS}' \
|
||||||
COMPATREL="${COMPATREL}" \
|
COMPATREL='${COMPATREL}' \
|
||||||
COMPATDIR="${COMPATDIR}"
|
COMPATDIR='${COMPATDIR}'
|
||||||
|
|
||||||
${COMPATLIB}: .NOTMAIN __always_make_compatlib
|
${COMPATLIB}: .NOTMAIN __always_make_compatlib
|
||||||
@echo making sure the compat library is up to date...
|
@echo making sure the compat library is up to date...
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $NetBSD: Makefile.inc,v 1.14 1996/05/11 16:13:39 mycroft Exp $
|
# $NetBSD: Makefile.inc,v 1.15 1996/05/20 17:23:25 mrg Exp $
|
||||||
#
|
#
|
||||||
# NOTE: $S must correspond to the top of the 'sys' tree
|
# NOTE: $S must correspond to the top of the 'sys' tree
|
||||||
|
|
||||||
@ -11,13 +11,13 @@ KERNLIB_PROF= ${KERNDST}/libkern.po
|
|||||||
|
|
||||||
KERNMAKE= \
|
KERNMAKE= \
|
||||||
cd ${KERNDST} && ${MAKE} -f ${KERNREL}${KERNDIR}/Makefile \
|
cd ${KERNDST} && ${MAKE} -f ${KERNREL}${KERNDIR}/Makefile \
|
||||||
CC="${CC}" CFLAGS="${CFLAGS}" \
|
CC='${CC}' CFLAGS='${CFLAGS}' \
|
||||||
AS="${AS}" AFLAGS="${AFLAGS}" \
|
AS='${AS}' AFLAGS='${AFLAGS}' \
|
||||||
LD="${LD}" \
|
LD='${LD}' \
|
||||||
MACHINE="${MACHINE}" MACHINE_ARCH="${MACHINE_ARCH}" \
|
MACHINE='${MACHINE}' MACHINE_ARCH='${MACHINE_ARCH}' \
|
||||||
KERNCPPFLAGS="${CPPFLAGS}" \
|
KERNCPPFLAGS='${CPPFLAGS}' \
|
||||||
KERNREL="${KERNREL}" \
|
KERNREL='${KERNREL}' \
|
||||||
KERNDIR="${KERNDIR}"
|
KERNDIR='${KERNDIR}'
|
||||||
|
|
||||||
${KERNLIB}: .NOTMAIN __always_make_kernlib
|
${KERNLIB}: .NOTMAIN __always_make_kernlib
|
||||||
@echo making sure the kern library is up to date...
|
@echo making sure the kern library is up to date...
|
||||||
|
Loading…
Reference in New Issue
Block a user