diff options
author | pawel <pawel@FreeBSD.org> | 2012-07-05 05:41:20 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2012-07-05 05:41:20 +0800 |
commit | 300c0efd766f10da1625460fbf9f379301414afe (patch) | |
tree | 9ae9fca5ef6d70ac2b2dfa75996c9fb668bd820e /lang | |
parent | 98e1b82167fa7168ef8601176924fbfd37107a14 (diff) | |
download | freebsd-ports-gnome-300c0efd766f10da1625460fbf9f379301414afe.tar.gz freebsd-ports-gnome-300c0efd766f10da1625460fbf9f379301414afe.tar.zst freebsd-ports-gnome-300c0efd766f10da1625460fbf9f379301414afe.zip |
Fix detection of i386 platforms
PR: ports/169607
Submitted by: David Naylor <naylor.b.david@gmail.com> (maintainer)
Diffstat (limited to 'lang')
-rw-r--r-- | lang/pypy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/pypy/Makefile b/lang/pypy/Makefile index 925b76fb6c81..3b3380beb275 100644 --- a/lang/pypy/Makefile +++ b/lang/pypy/Makefile @@ -181,7 +181,7 @@ pre-fetch: @${ECHO} @${ECHO} "On a fast machine PyPy takes around 45 minutes to translate and compile," @${ECHO} "however an average machine takes in excess of 4 hours, per instance." -.if !defined(PYPY_IGNORE_MEM) && (${PYPY_ARCH} == "i386" || ${PYPY_ARCH} == "ppc_32") +.if !defined(PYPY_IGNORE_MEM) && (${PYPY_ARCH} == "x86_32" || ${PYPY_ARCH} == "ppc_32") @if [ $$((`sysctl -n hw.physmem` / 1024 / 1024)) -le 2000 ]; then \ ${ECHO}; \ ${ECHO} "err: this system has insufficient memory, expected at least 2G RAM",; \ |