summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Zullinger <tmzullinger@users.sourceforge.net>2007-07-12 04:29:15 +0000
committerTodd Zullinger <tmzullinger@users.sourceforge.net>2007-07-12 04:29:15 +0000
commit75e3efd0184c7c5a93479ee812f8b888debf94af (patch)
tree62f320b4a0f287f330e2b7c7e540c46eb09ab8be
parent9fa8a5979d2e306c4395e645ab67c371b3a0fa46 (diff)
downloadlibgpod-75e3efd0184c7c5a93479ee812f8b888debf94af.tar.gz
libgpod-75e3efd0184c7c5a93479ee812f8b888debf94af.tar.xz
libgpod-75e3efd0184c7c5a93479ee812f8b888debf94af.zip
make the test for xsltproc more robust (read as: make it suck less)
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1632 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r--bindings/python/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index fd3cc36..0c11d02 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -46,7 +46,7 @@ _gpod_la_LIBADD = $(LIBGPOD_LIBS) $(top_builddir)/src/libgpod.la
gpod_doc.i: $(srcdir)/gpod_doc.i.in $(srcdir)/gtkdoc-to-swig.xsl
cat $< > $@
- -if test -x `which xsltproc`; then \
+ -if test -x "`which xsltproc 2>/dev/null`"; then \
for xml in $(top_srcdir)/docs/reference/xml/*.xml; do \
xsltproc $(srcdir)/gtkdoc-to-swig.xsl $$xml; \
done >> $@; \