Hello, Find attached a trivial patch against the four bootstrap scripts, fixing a unnecessary bashism.
cu andreas -- `What a good friend you are to him, Dr. Maturin. His other friends are so grateful to you.' `I sew his ears on from time to time, sure'
diff --git a/IlmBase/bootstrap b/IlmBase/bootstrap index 05bfa77..6e28660 100755 --- a/IlmBase/bootstrap +++ b/IlmBase/bootstrap @@ -1,7 +1,7 @@ #! /bin/sh # If we're on OS X, use glibtoolize instead of toolize HOSTTYPE=`uname` -if [ "$HOSTTYPE" == "Darwin" ]; then +if [ "$HOSTTYPE" = "Darwin" ]; then LIBTOOLIZE=glibtoolize else LIBTOOLIZE=libtoolize diff --git a/OpenEXR/bootstrap b/OpenEXR/bootstrap index 45b69f8..1d18429 100755 --- a/OpenEXR/bootstrap +++ b/OpenEXR/bootstrap @@ -1,7 +1,7 @@ #! /bin/sh # If we're on OS X, use glibtoolize instead of toolize HOSTTYPE=`uname` -if [ "$HOSTTYPE" == "Darwin" ]; then +if [ "$HOSTTYPE" = "Darwin" ]; then LIBTOOLIZE=glibtoolize else LIBTOOLIZE=libtoolize diff --git a/OpenEXR_Viewers/bootstrap b/OpenEXR_Viewers/bootstrap index 3a36fde..9e0de99 100755 --- a/OpenEXR_Viewers/bootstrap +++ b/OpenEXR_Viewers/bootstrap @@ -1,7 +1,7 @@ #! /bin/sh # If we're on OS X, use glibtoolize instead of toolize HOSTTYPE=`uname` -if [ "$HOSTTYPE" == "Darwin" ]; then +if [ "$HOSTTYPE" = "Darwin" ]; then LIBTOOLIZE=glibtoolize else LIBTOOLIZE=libtoolize diff --git a/PyIlmBase/bootstrap b/PyIlmBase/bootstrap index 913aab8..1f8f98e 100755 --- a/PyIlmBase/bootstrap +++ b/PyIlmBase/bootstrap @@ -1,7 +1,7 @@ #! /bin/sh # If we're on OS X, use glibtoolize instead of toolize HOSTTYPE=`uname` -if [ "$HOSTTYPE" == "Darwin" ]; then +if [ "$HOSTTYPE" = "Darwin" ]; then LIBTOOLIZE=glibtoolize else LIBTOOLIZE=libtoolize
_______________________________________________ Openexr-devel mailing list Openexr-devel@nongnu.org https://lists.nongnu.org/mailman/listinfo/openexr-devel