2014-08-11 13:27:10 +02:00

16 lines
547 B
Plaintext

$NetBSD: patch-aa,v 1.3 2013/12/09 11:39:20 adam Exp $
Shell portability fix: see https://savannah.nongnu.org/bugs/index.php?22222
--- bootstrap.orig 2013-11-12 17:26:32.000000000 +0000
+++ bootstrap
@@ -1,7 +1,7 @@
#! /bin/sh
# If we're on OS X, use glibtoolize instead of toolize when available
HOSTTYPE=`uname`
-if [ "$HOSTTYPE" == "Darwin" ] && $(which glibtoolize > /dev/null 2>&1) ; then
+if [ "$HOSTTYPE" = "Darwin" ] && $(which glibtoolize > /dev/null 2>&1) ; then
LIBTOOLIZE=glibtoolize
else
LIBTOOLIZE=libtoolize