diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-08 01:52:05 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-08 01:52:05 +0800 |
commit | a16706067d74cf68c0610accb9c611289ff7070e (patch) | |
tree | fc1f3c0234ee8b19188a008ccf3d0b4260bfa858 | |
parent | 3fc82537c59b03c0c0c927d47a7126c85d7b08f6 (diff) | |
download | gsoc2013-evolution-a16706067d74cf68c0610accb9c611289ff7070e.tar gsoc2013-evolution-a16706067d74cf68c0610accb9c611289ff7070e.tar.gz gsoc2013-evolution-a16706067d74cf68c0610accb9c611289ff7070e.tar.bz2 gsoc2013-evolution-a16706067d74cf68c0610accb9c611289ff7070e.tar.lz gsoc2013-evolution-a16706067d74cf68c0610accb9c611289ff7070e.tar.xz gsoc2013-evolution-a16706067d74cf68c0610accb9c611289ff7070e.tar.zst gsoc2013-evolution-a16706067d74cf68c0610accb9c611289ff7070e.zip |
Fixed detection of xml in gnome-xml macros take 2 -mig
svn path=/trunk/; revision=365
-rw-r--r-- | macros/gnome-xml-check.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/gnome-xml-check.m4 b/macros/gnome-xml-check.m4 index 5788770905..d1ffde9e27 100644 --- a/macros/gnome-xml-check.m4 +++ b/macros/gnome-xml-check.m4 @@ -15,10 +15,10 @@ AC_DEFUN([GNOME_XML_HOOK],[ fi fi AC_CHECK_LIB(xml, xmlNewDoc, [$1], [ - if text x$2 = failure; then + if test x$2 = failure; then AC_MSG_ERROR(Could not link sample xml program) fi - ], gnome-config --libs xml) + ], `gnome-config --libs xml`) ]) AC_DEFUN([GNOME_XML_CHECK], [ |