From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 13 15:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B41B11065672 for ; Wed, 13 Jun 2012 15:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9EB038FC08 for ; Wed, 13 Jun 2012 15:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q5DFoCD9006520 for ; Wed, 13 Jun 2012 15:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q5DFoCeg006519; Wed, 13 Jun 2012 15:50:12 GMT (envelope-from gnats) Date: Wed, 13 Jun 2012 15:50:12 GMT Message-Id: <201206131550.q5DFoCeg006519@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Bryan Drewery Cc: Subject: Re: ports/169039: [bsd.port.mk] Fix sanity-config error when using WRKDIRPREFIX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bryan Drewery List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2012 15:50:12 -0000 The following reply was made to PR ports/169039; it has been noted by GNATS. From: Bryan Drewery To: bug-followup@FreeBSD.org Cc: Baptiste Daroussin Subject: Re: ports/169039: [bsd.port.mk] Fix sanity-config error when using WRKDIRPREFIX Date: Wed, 13 Jun 2012 10:46:23 -0500 This is a multi-part message in MIME format. --------------000308080004090702070809 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Attached is proper patch. --------------000308080004090702070809 Content-Type: text/plain; charset=windows-1252; name="patch-sanity-config.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-sanity-config.txt" --- bsd.port.mk.orig 2012-06-13 10:26:44.000000000 -0500 +++ bsd.port.mk 2012-06-13 10:37:21.000000000 -0500 @@ -6010,7 +6010,7 @@ [Nn]|[Nn][Oo]) \ exit 0; \ esac; \ - ${MAKE} config + cd ${.CURDIR} && ${MAKE} config; .endif .endif # sanity-config @@ -6101,7 +6101,7 @@ ${CAT} $${TMPOPTIONSFILE} > ${OPTIONSFILE}; \ fi; \ ${RM} -f $${TMPOPTIONSFILE} - @${MAKE} sanity-config + @cd ${.CURDIR} && ${MAKE} sanity-config; .endif .endif # config --------------000308080004090702070809--