From dc96623791ea3c991c3c659b7aeb778911102f41 Mon Sep 17 00:00:00 2001 From: schulz Date: Mon, 2 Mar 2015 20:11:37 +0000 Subject: [PATCH] On darwin host use gsed if user hasn't specified anything else. Otherwise, if variable SED is already set, leave it unchanged git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50159 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- configure | 1 + configure.in | 1 + 2 files changed, 2 insertions(+) diff --git a/configure b/configure index 88bf9a2173..6f854b7d7b 100755 --- a/configure +++ b/configure @@ -4779,6 +4779,7 @@ $as_echo "$as_me: WARNING: \"Unknown CPU for host -- $host_cpu\"" >&2;} aros_host_cc="$aros_host_cc $aros_host_cc_pipe" aros_host_arch="darwin" host_cc_elf=no + if [ -z ${SED+x} ]; then SED="gsed"; fi android_build_os="darwin-x86" android_tool="android" default_android_sdk="/android-sdk-mac_x86" diff --git a/configure.in b/configure.in index 4d76ad9b94..4e4bed1a94 100644 --- a/configure.in +++ b/configure.in @@ -238,6 +238,7 @@ case "$host_os" in aros_host_cc="$aros_host_cc $aros_host_cc_pipe" aros_host_arch="darwin" host_cc_elf=no + if [ -z ${SED+x} ]; then SED="gsed"; fi android_build_os="darwin-x86" android_tool="android" default_android_sdk="/android-sdk-mac_x86" -- 2.11.4.GIT