From 5df73fe1fb6ce219263d42e582b52f9cb8923fcd Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 14 Nov 2006 18:23:48 +0000 Subject: [PATCH] Replace bash-specific == with sh-understood =. Fixes bug #373864. 2006-11-14 Behdad Esfahbod * sanity_check: Replace bash-specific == with sh-understood =. Fixes bug #373864. --- ChangeLog | 5 +++++ sanity_check | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b5d2c321c..bcf388c42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-14 Behdad Esfahbod + + * sanity_check: Replace bash-specific == with sh-understood =. + Fixes bug #373864. + 2006-11-05 Hans Breuer * glib/makefile.msc.in : glib/ version not the gobject/ diff --git a/sanity_check b/sanity_check index cf6fb3652..5f6e66e20 100755 --- a/sanity_check +++ b/sanity_check @@ -16,7 +16,7 @@ tar xfz glib-$VERSION.tar.gz for file in INSTALL NEWS README do echo -n "$file... " - if [ "x`grep $VERSION glib-$VERSION/$file | wc -l | awk -F' ' '{print $1}'`" == "x0" ]; then + if [ "x`grep $VERSION glib-$VERSION/$file | wc -l | awk -F' ' '{print $1}'`" = "x0" ]; then echo "failed." #exit 1 else @@ -25,7 +25,7 @@ do done echo -n "INSTALL..." -if [ "x`grep $VERSION glib-$VERSION/INSTALL | wc -l | awk -F' ' '{print $1}'`" == "x2" ]; then +if [ "x`grep $VERSION glib-$VERSION/INSTALL | wc -l | awk -F' ' '{print $1}'`" = "x2" ]; then echo "ok" else echo "failed."