diff options
author | Benjamin Otte <otte@gnome.org> | 2004-02-22 15:18:08 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-02-22 15:18:08 +0000 |
commit | 0945c85c4c9139e2e5b8e04d0fc841b8aa1e6e9b (patch) | |
tree | ab7884bfb98a8176d9d9bfb362ae6d041fcd87e3 | |
parent | d821172609916bc61bbbca7f8d2e6cf0ca1ab47a (diff) |
m4/as-docbook.m4: don't use == operator with test(1) (fixes #135115)RELEASE-0_7_5BRANCH-RELEASE-0_7_5-ROOTBRANCH-RELEASE-0_7_5
Original commit message from CVS:
2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
reviewed by: Benjamin Otte <otte@gnome.org>
* m4/as-docbook.m4:
don't use == operator with test(1) (fixes #135115)
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | m4/as-docbook.m4 | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2004-02-22 Julio M. Merino Vidal <jmmv@menta.net> + + reviewed by: Benjamin Otte <otte@gnome.org> + + * m4/as-docbook.m4: + don't use == operator with test(1) (fixes #135115) + 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org> * common/m4/gst-arch.m4: x86_64 is x86 too (clue from Fedora 2 test) diff --git a/m4/as-docbook.m4 b/m4/as-docbook.m4 index e2b5595..6a2aa45 100644 --- a/m4/as-docbook.m4 +++ b/m4/as-docbook.m4 @@ -50,7 +50,7 @@ END AC_MSG_RESULT($XSLTPROC_WORKS) fi - if test "x$XSLTPROC_WORKS" == "xyes"; then + if test "x$XSLTPROC_WORKS" = "xyes"; then dnl execute ACTION-IF-FOUND ifelse([$1], , :, [$1]) else |