changeset 989:94e809ed9e5b

2008-07-24 Matthias Klose <doko@ubuntu.com> * Makefile.am: Likewise (fix bashisms).
author doko@ubuntu.com
date Thu, 24 Jul 2008 18:13:42 +0200
parents 44dbed9c8091
children 961aec1bb31b
files ChangeLog Makefile.am
diffstat 2 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Jul 24 18:11:19 2008 +0200
+++ b/ChangeLog	Thu Jul 24 18:13:42 2008 +0200
@@ -1,6 +1,7 @@
 2008-07-24  Matthias Klose  <doko@ubuntu.com>
 
 	* configure.ac: Fix bashisms.
+	* Makefile.am: Likewise.
 
 2008-07-24  Matthias Klose  <doko@ubuntu.com>
 
--- a/Makefile.am	Thu Jul 24 18:11:19 2008 +0200
+++ b/Makefile.am	Thu Jul 24 18:13:42 2008 +0200
@@ -468,7 +468,7 @@
 	all_patches_ok=yes; \
 	for p in $(ICEDTEA_PATCHES) ; \
 	do \
-	  if test x$${all_patches_ok} == "xyes" \
+	  if test x$${all_patches_ok} = "xyes" \
 	    && echo Checking $$p \
 	    && $(PATCH) -l -p0 --dry-run -s -t -f \
 	      -F 0 < $(abs_top_srcdir)/$$p ; \
@@ -482,11 +482,11 @@
 	        >> stamps/patch.stamp.tmp ; \
 	    fi ; \
 	  else \
-	    test x$${all_patches_ok} == "xyes" && all_patches_ok=$$p ; \
+	    test x$${all_patches_ok} = "xyes" && all_patches_ok=$$p ; \
 	  fi ; \
 	done ; \
 	mv stamps/patch.stamp.tmp stamps/patch.stamp ; \
-	if ! test x$${all_patches_ok} == "xyes"; then \
+	if ! test x$${all_patches_ok} = "xyes"; then \
 	  echo ERROR patch $${all_patches_ok} FAILED! ; \
 	  echo WARNING make clean-patch before retrying a fix ; \
 	  false; \
@@ -506,7 +506,7 @@
 	    all_patches_ok=no ; \
 	  fi ; \
 	done ; \
-	if ! test x$${all_patches_ok} == "xyes" ; then \
+	if ! test x$${all_patches_ok} = "xyes" ; then \
 	  echo "WARNING Not all patches reverted cleanly" ; \
 	fi
 
@@ -517,7 +517,7 @@
 	all_patches_ok=yes; \
 	for p in $(ICEDTEA_FSG_PATCHES) ; \
 	do \
-	  if test x$${all_patches_ok} == "xyes" \
+	  if test x$${all_patches_ok} = "xyes" \
 	    && echo Checking $$p \
 	    && $(PATCH) -l -p0 --dry-run -s -t -f \
 	      -F 0 < $(abs_top_srcdir)/$$p ; \
@@ -531,11 +531,11 @@
 	        >> stamps/patch-fsg.stamp.tmp ; \
 	    fi ; \
 	  else \
-	    test x$${all_patches_ok} == "xyes" && all_patches_ok=$$p ; \
+	    test x$${all_patches_ok} = "xyes" && all_patches_ok=$$p ; \
 	  fi ; \
 	done ; \
 	mv stamps/patch-fsg.stamp.tmp stamps/patch-fsg.stamp ; \
-	if ! test x$${all_patches_ok} == "xyes"; then \
+	if ! test x$${all_patches_ok} = "xyes"; then \
 	  echo ERROR patch $${all_patches_ok} FAILED! ; \
 	  echo WARNING make clean-patch before retrying a fix ; \
 	  false; \
@@ -555,7 +555,7 @@
 	    all_patches_ok=no ; \
 	  fi ; \
 	done ; \
-	if ! test x$${all_patches_ok} == "xyes" ; then \
+	if ! test x$${all_patches_ok} = "xyes" ; then \
 	  echo "WARNING Not all patches reverted cleanly" ; \
 	fi