diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-02-09 09:07:37 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-02-09 09:07:37 +0000 |
commit | 445134f025118bb2ed8b1e07fb3e52598038a149 (patch) | |
tree | 932f3820f7b5afe055db034ef94c04931dbd746e /Mk | |
parent | update to 1.6.5 (diff) |
Fix variable expansion bug on 4.x systems, this will fix INDEX and
builds of some ports.
PR: ports/77250
Submitted by: NIIMI Satoshi <sa2c at sa2c dot net>
Notes
Notes:
svn path=/head/; revision=128351
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index f1978094eadd..f63e3a35980b 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1082,6 +1082,8 @@ OPTIONSFILE?= ${PORT_DBDIR}/${UNIQUENAME}/options _OPTIONSFILE!= ${ECHO_CMD} "${OPTIONSFILE}" .if defined(OPTIONS) . if defined(PACKAGE_BUILDING) || (defined(BATCH) && !exists(${_OPTIONSFILE})) +WITHOUT:= +WITH:= . if defined(OPTIONS) REALOPTIONS=${OPTIONS:C/".*"//g} . for O in ${REALOPTIONS} |