Date: Wed, 20 May 2015 20:09:54 +0000 (UTC) From: Jimmy Olgeni <olgeni@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386887 - in head/lang: erlang erlang-runtime17 Message-ID: <201505202009.t4KK9sK0074761@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: olgeni Date: Wed May 20 20:09:54 2015 New Revision: 386887 URL: https://svnweb.freebsd.org/changeset/ports/386887 Log: Unbreak build on armv6. PR: 200322 Submitted by: a.andersson.thn@gmail.com Modified: head/lang/erlang-runtime17/Makefile head/lang/erlang/Makefile Modified: head/lang/erlang-runtime17/Makefile ============================================================================== --- head/lang/erlang-runtime17/Makefile Wed May 20 19:51:16 2015 (r386886) +++ head/lang/erlang-runtime17/Makefile Wed May 20 20:09:54 2015 (r386887) @@ -151,6 +151,10 @@ CONFIGURE_ARGS+=--disable-smp-support MAKE_ARGS+= ARCH=x86 .endif +.if ${ARCH} == armv6 +MAKE_ARGS+= ARCH=arm +.endif + # The man-pages are put (in spite of FreeBSD's port convention) in a private # subdir. This is to avoid cluttering up the man page name space. Also the # Erlang man pages are more of internal documentation using the man format than Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Wed May 20 19:51:16 2015 (r386886) +++ head/lang/erlang/Makefile Wed May 20 20:09:54 2015 (r386887) @@ -168,6 +168,10 @@ CONFIGURE_ARGS+=--disable-smp-support MAKE_ARGS+= ARCH=x86 .endif +.if ${ARCH} == armv6 +MAKE_ARGS+= ARCH=arm +.endif + # The man-pages are put (in spite of FreeBSD's port convention) in a private # subdir. This is to avoid cluttering up the man page name space. Also the # Erlang man pages are more of internal documentation using the man format than
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505202009.t4KK9sK0074761>