diff options
author | delphij <delphij@FreeBSD.org> | 2013-05-16 22:25:17 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2013-05-16 22:25:17 +0000 |
commit | 5c440a6605d42c95057010f592f3ae0da4725fa4 (patch) | |
tree | 828301225ce12a406f80b86a86938b851e10b36f /usr.bin/bmake | |
parent | 4ad8094736a6eeaea1a83af9a04fd4a0a0302445 (diff) | |
download | FreeBSD-src-5c440a6605d42c95057010f592f3ae0da4725fa4.zip FreeBSD-src-5c440a6605d42c95057010f592f3ae0da4725fa4.tar.gz |
Similar to r250719: guard against MK_BMAKE not being defined.
Diffstat (limited to 'usr.bin/bmake')
-rw-r--r-- | usr.bin/bmake/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc index c8ca110..b6f364b 100644 --- a/usr.bin/bmake/Makefile.inc +++ b/usr.bin/bmake/Makefile.inc @@ -7,7 +7,7 @@ .export SRCTOP .endif -.if ${MK_BMAKE} != "no" +.if defined(MK_BMAKE) && ${MK_BMAKE} != "no" PROG= make .endif |