summaryrefslogtreecommitdiff
path: root/emulators/virtualbox-ose
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-05-02 17:16:30 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-05-02 17:16:30 +0000
commit46a630f1ddc6d9469b00c0657ad75a68f35218f9 (patch)
tree5d884a8de9b262b52a4d45256d39db4678fc83db /emulators/virtualbox-ose
parentbmake is quite strict with != make it really happy (diff)
bmake doesn't know about .SHELL unsetenv=true, workaround it
Notes
Notes: svn path=/head/; revision=317134
Diffstat (limited to 'emulators/virtualbox-ose')
-rw-r--r--emulators/virtualbox-ose/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/emulators/virtualbox-ose/Makefile b/emulators/virtualbox-ose/Makefile
index 2d327b079308..dec91130a4fe 100644
--- a/emulators/virtualbox-ose/Makefile
+++ b/emulators/virtualbox-ose/Makefile
@@ -67,7 +67,13 @@ VDE_DESC= Build with VDE support
VNC_DESC= Build with VNC support
WEBSERVICE_DESC= Build Webservice
+# bmake doesn't know about unsetenv=true
+.if defined(.PARSEDIR)
+ENV=
+.export ENV
+.else
.SHELL: path="/bin/sh" unsetenv=true
+.endif
.include <bsd.port.options.mk>