diff options
author | ru <ru@FreeBSD.org> | 2003-07-04 14:27:06 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-07-04 14:27:06 +0000 |
commit | 240df1e4a76aacc97b23bbdf07b3e37a6c40e152 (patch) | |
tree | 478c54d6756f6811f22707194bdbd7e463779bb8 /Makefile | |
parent | 1a28b01e3111666aa59273432a22b76afc30bcf9 (diff) | |
download | FreeBSD-src-240df1e4a76aacc97b23bbdf07b3e37a6c40e152.zip FreeBSD-src-240df1e4a76aacc97b23bbdf07b3e37a6c40e152.tar.gz |
Fixed style bugs related to parentheses in Makefile.inc1.
Submitted by: bde
Fixed nearby bug: propagate the root Makefile's idea of
the appropriate "make" binary down to release/Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -81,9 +81,10 @@ BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/} PATH= /sbin:/bin:/usr/sbin:/usr/bin MAKEOBJDIRPREFIX?= /usr/obj MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE} -_MAKE= PATH=${PATH} \ +BINMAKE= PATH=${PATH} \ `if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \ - -m ${.CURDIR}/share/mk -f Makefile.inc1 + -m ${.CURDIR}/share/mk +_MAKE= ${BINMAKE} -f Makefile.inc1 # # Handle the user-driven targets, using the source relative mk files. |