From owner-freebsd-emulation@FreeBSD.ORG Wed May 28 19:07:20 2014 Return-Path: Delivered-To: vbox@FreeBSD.org Received: from hammer.pct.niksun.com (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by hub.freebsd.org (Postfix) with ESMTP id 13DAE47A; Wed, 28 May 2014 19:07:20 +0000 (UTC) Message-ID: <538633E7.70206@FreeBSD.org> Date: Wed, 28 May 2014 15:07:19 -0400 From: Jung-uk Kim User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Ron Thomas , vbox@FreeBSD.org Subject: Re: FreeBSD Port: emulators/virtualbox-ose References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/mixed; boundary="------------040701030609050305020006" X-Mailman-Approved-At: Wed, 28 May 2014 19:16:04 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2014 19:07:20 -0000 This is a multi-part message in MIME format. --------------040701030609050305020006 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2014-05-27 22:09:21 -0400, Ron Thomas wrote: > Virtualbox-ose-4.3.10_1 port won't compile Freebsd 9.2-RELEASE-p4 > amd64 > > Make config options: Debus Debug Guestadditions Python Udptunnel > Vnc > > Ran portmaster -f virtualbox-ose Error: cd > /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.12/out/freebsd.amd64/debug/bin/sdk/bindings/xpcom: > > No such file or directory Please try the attached patch. Thanks, Jung-uk Kim -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQEcBAEBAgAGBQJThjPnAAoJEHyflib82/FGT34H/inVVA0ah1AQDdCbq/yvtSel I4yr3Zy4whAVC1Db5tnAelgjG4oxvKdm3Wey/lA/NL8zxWimtnj8I7wUtGYkz8XW yixxDpxtTxbrCzHNjZ3eppj50wIqjtk9yp8sCigNZWbPAPRVu9OzfNbygXDVxss6 YZxhqFY6sypa4XpovnJhvsq3q8txu/ij5Sbq16ykFxdsh5BVkOnznQdU2pE1sLVK Xk237QDwwxg5wOrGvx87jD8j++TZO/VePGTytL+KUgtH22q2mqqPm6Yu4bJhhwIw Djoq/PmZPt7jCj6tMTA+RXmgejOEMwOQ3F/vHDSldzAjJWboO2VUmzgc8nCCXWQ= =E80B -----END PGP SIGNATURE----- --------------040701030609050305020006 Content-Type: text/x-patch; name="vbox.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="vbox.diff" Index: emulators/virtualbox-ose/Makefile =================================================================== --- emulators/virtualbox-ose/Makefile (revision 355647) +++ emulators/virtualbox-ose/Makefile (working copy) @@ -241,12 +241,9 @@ post-patch: @${ECHO} 'VBOX_ICONV_DEFS = LIBICONV_PLUG' >> ${WRKSRC}/LocalConfig.kmk .endif -pre-build: - @${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/env.sh - do-build: - cd ${WRKSRC} && ${SH} env.sh && \ - ${KMK_CONFIG} ${LOCALBASE}/bin/kmk ${KMK_FLAGS} + cd ${WRKSRC} && \ + ${SH} -c '. env.sh && ${KMK_CONFIG} ${LOCALBASE}/bin/kmk ${KMK_FLAGS}' .if ${PORT_OPTIONS:MPYTHON} ${PYTHON_CMD} -mcompileall ${KMK_BUILDDIR}/bin/sdk/bindings/xpcom/python/xpcom .endif --------------040701030609050305020006--