svn commit: r386887 - in head/lang: erlang erlang-runtime17
Jimmy Olgeni
olgeni at FreeBSD.org
Wed May 20 20:09:55 UTC 2015
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 at 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
More information about the svn-ports-all
mailing list