diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-07 17:52:05 +0000 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-07 17:52:05 +0000 |
commit | f37d581bc74bf464a03b35e09e1257fcbb747cba (patch) | |
tree | 5cba133b0efac0e1fa5dc2c27cad64c81524e1f8 | |
parent | 7051f101b7a9c36fa6c121a57348dddb7792f477 (diff) | |
download | gnome-common-f37d581bc74bf464a03b35e09e1257fcbb747cba.tar.gz |
Fixed detection of xml in gnome-xml macros take 2 -mig
svn path=/trunk/; revision=380
-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 5788770..d1ffde9 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], [ |