changeset in /hg/icedtea6: 2008-07-24 Matthias Klose <doko at ubu...
doko at ubuntu.com
doko at ubuntu.com
Thu Jul 24 09:13:48 PDT 2008
changeset 94e809ed9e5b in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=94e809ed9e5b
description:
2008-07-24 Matthias Klose <doko at ubuntu.com>
* Makefile.am: Likewise (fix bashisms).
diffstat:
2 files changed, 9 insertions(+), 8 deletions(-)
ChangeLog | 1 +
Makefile.am | 16 ++++++++--------
diffs (78 lines):
diff -r 44dbed9c8091 -r 94e809ed9e5b ChangeLog
--- 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 at ubuntu
2008-07-24 Matthias Klose <doko at ubuntu.com>
* configure.ac: Fix bashisms.
+ * Makefile.am: Likewise.
2008-07-24 Matthias Klose <doko at ubuntu.com>
diff -r 44dbed9c8091 -r 94e809ed9e5b Makefile.am
--- 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 @@ stamps/patch.stamp: stamps/patch-fsg.sta
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: stamps/patch-fsg.sta
>> 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 @@ clean-patch:
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 @@ stamps/patch-fsg.stamp: stamps/extract.s
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: stamps/extract.s
>> 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 @@ clean-patch-fsg:
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
More information about the distro-pkg-dev
mailing list