diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-25 20:34:12 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-25 20:34:12 +0800 |
commit | e4c0280aa893d46c7d5c7b4be8d556bf9b4adf04 (patch) | |
tree | a4c0a30131a4ad127d32d8140b2b850d2050b961 | |
parent | ed99dca03df9147320ec6d943bef1eb7826d9df2 (diff) | |
download | freebsd-ports-gnome-e4c0280aa893d46c7d5c7b4be8d556bf9b4adf04.tar.gz freebsd-ports-gnome-e4c0280aa893d46c7d5c7b4be8d556bf9b4adf04.tar.zst freebsd-ports-gnome-e4c0280aa893d46c7d5c7b4be8d556bf9b4adf04.zip |
Replicate r321735 fix to bsd.port.subdir.mk as it suffers the same bug
-rw-r--r-- | Mk/bsd.port.subdir.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Mk/bsd.port.subdir.mk b/Mk/bsd.port.subdir.mk index 1dfe5b20d8f7..c83d5c3f2ba9 100644 --- a/Mk/bsd.port.subdir.mk +++ b/Mk/bsd.port.subdir.mk @@ -98,7 +98,10 @@ OPSYS!= ${UNAME} -s .if ${ARCH} == "amd64" || ${ARCH} =="ia64" .if !defined(HAVE_COMPAT_IA32_KERN) -HAVE_COMPAT_IA32_KERN!= if ${SYSCTL} -n compat.ia32.maxvmem >/dev/null 2>&1; then echo YES; fi +HAVE_COMPAT_IA32_KERN!= if ${SYSCTL} -n compat.ia32.maxvmem >/dev/null 2>&1; then echo YES; fi; echo +.if empty(HAVE_COMPAT_IA32_KERN) +.undef HAVE_COMPAT_IA32_KERN +.endif .endif .endif |