pkgsrc-ng/converters/skf/patches/patch-configure
2014-08-11 13:27:10 +02:00

28 lines
931 B
Plaintext

$NetBSD: patch-configure,v 1.4 2013/12/27 08:32:05 obache Exp $
* test(1) portability fix
--- configure.orig 2013-12-24 10:20:55.000000000 +0000
+++ configure
@@ -5115,9 +5115,9 @@ $as_echo "$ruby_version" >&6; }
elif test "$ruby_version" = "20"; then
ruby_20_preferred="yes"
ruby_19_preferred="yes"
- elif test "$ruby_version" == "19"; then
+ elif test "$ruby_version" = "19"; then
ruby_19_preferred="yes"
- elif test "$ruby_version" == "18"; then
+ elif test "$ruby_version" = "18"; then
ruby_18_preferred="yes"
else
ruby_21_preferred="yes"
@@ -5342,7 +5342,7 @@ $as_echo_n "checking major version... "
* ) darwin_shared="-arch i386 -arch x86_64";
deployment_target=MACOSX_DEPLOYMENT_TARGET=10.6;;
esac
- if test "$mactiger" == "yes"; then
+ if test "$mactiger" = "yes"; then
deployment_target="MACOSX_DEPLOYMENT_TARGET=10.4"
fi
lineend_default="-DDEFAULT_EOL_CR"