aboutsummaryrefslogtreecommitdiff
path: root/lang/erlang-runtime22/files
diff options
context:
space:
mode:
authorJimmy Olgeni <olgeni@FreeBSD.org>2019-12-14 15:03:32 +0000
committerJimmy Olgeni <olgeni@FreeBSD.org>2019-12-14 15:03:32 +0000
commit46bf1f838d026b6d6f85a3b10825a6fb2f6de19f (patch)
treed8c33a580b31a713829d1ed80d49f4ccae1e3932 /lang/erlang-runtime22/files
parent6be024e2fec97892fc50c4072ca78812c36ca4e7 (diff)
downloadports-46bf1f838d026b6d6f85a3b10825a6fb2f6de19f.tar.gz
ports-46bf1f838d026b6d6f85a3b10825a6fb2f6de19f.zip
Notes
Diffstat (limited to 'lang/erlang-runtime22/files')
-rw-r--r--lang/erlang-runtime22/files/patch-configure.src40
1 files changed, 40 insertions, 0 deletions
diff --git a/lang/erlang-runtime22/files/patch-configure.src b/lang/erlang-runtime22/files/patch-configure.src
new file mode 100644
index 000000000000..ebfd666e4558
--- /dev/null
+++ b/lang/erlang-runtime22/files/patch-configure.src
@@ -0,0 +1,40 @@
+--- configure.src.orig 2019-12-06 10:29:10 UTC
++++ configure.src
+@@ -49,7 +49,7 @@ skip_applications=
+ while test $# != 0; do
+ case $1 in
+ -srcdir=* | --srcdir=*)
+- user_srcdir=`expr "$1" : '[^=]*=\(.*\)'`
++ user_srcdir=`expr -- "$1" : '[^=]*=\(.*\)'`
+ if test "$ERL_TOP" != ""; then
+ echo "WARNING: Overriding ERL_TOP with $user_srcdir" 1>&2
+ echo "" 1>&2
+@@ -89,7 +89,7 @@ while test $# != 0; do
+ echo "" 1>&2
+ ;;
+ -cache-file=* | --cache-file=* )
+- static_cache=`expr "$1" : '[^=]*=\(.*\)'`
++ static_cache=`expr -- "$1" : '[^=]*=\(.*\)'`
+ if test "$static_cache" != "/dev/null"; then
+ echo "WARNING: Only using config cache file '$static_cache' as static cache" 1>&2
+ echo "" 1>&2
+@@ -126,8 +126,8 @@ while test $# != 0; do
+ mXY_build=
+ fi;;
+ CFLAGS=* | LDFLAGS=*)
+- flgs_var=`expr "$1" : '\([^=]*\)=.*'`
+- flgs_val=`expr "$1" : '[^=]*=\(.*\)'`
++ flgs_var=`expr -- "$1" : '\([^=]*\)=.*'`
++ flgs_val=`expr -- "$1" : '[^=]*=\(.*\)'`
+ eval $flgs_var=\$flgs_val
+ ;;
+ --help=r* | -help=r*)
+@@ -137,7 +137,7 @@ while test $# != 0; do
+ *)
+ case $1 in
+ --without-*)
+- skip_app=`expr "$1" : '--without-\(.*\)'`
++ skip_app=`expr -- "$1" : '--without-\(.*\)'`
+ if test -d "lib/$skip_app"; then
+ skip_applications="$skip_applications $skip_app"
+ fi;;