aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--macros/ChangeLog5
-rw-r--r--macros/gnome-xml-check.m44
2 files changed, 7 insertions, 2 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 1cd754ed7d..f1d14081d7 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,8 @@
+1999-09-01 Havoc Pennington <hp@pobox.com>
+
+ * gnome-xml-check.m4: If you're going to AC_PATH_PROG then use the
+ prog you find :-)
+
1999-08-02 Peter Teichman <pat4@acpub.duke.edu>
* removed gnome-conduit-check.m4 - it should be distributed with
diff --git a/macros/gnome-xml-check.m4 b/macros/gnome-xml-check.m4
index 5d379d16e1..2410f35db7 100644
--- a/macros/gnome-xml-check.m4
+++ b/macros/gnome-xml-check.m4
@@ -17,12 +17,12 @@ AC_DEFUN([GNOME_XML_HOOK],[
AC_CHECK_LIB(xml, xmlNewDoc, [
$1
AC_SUBST(GNOME_XML_LIB)
- GNOME_XML_LIB=`gnome-config --libs xml`
+ GNOME_XML_LIB=`$GNOME_CONFIG --libs xml`
], [
if test x$2 = xfailure; then
AC_MSG_ERROR(Could not link sample xml program)
fi
- ], `gnome-config --libs xml`)
+ ], `$GNOME_CONFIG --libs xml`)
])
AC_DEFUN([GNOME_XML_CHECK], [