aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHavoc Pennington <hp@pobox.com>1999-09-02 05:28:41 +0800
committerHavoc Pennington <hp@src.gnome.org>1999-09-02 05:28:41 +0800
commitacfd8adff8c507d6ee738993866aefa12361b172 (patch)
treed52edbca39d7d43f7d55e54a4ccece61c756b039
parent60436b516d52c29b1d4a647fdd9f1fb942efc94b (diff)
downloadgsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar
gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.gz
gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.bz2
gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.lz
gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.xz
gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.zst
gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.zip
If you're going to AC_PATH_PROG then use the prog you find :-)
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 :-) svn path=/trunk/; revision=1156
-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], [