diff options
author | Todd Zullinger <tmzullinger@users.sourceforge.net> | 2007-07-12 04:29:15 +0000 |
---|---|---|
committer | Todd Zullinger <tmzullinger@users.sourceforge.net> | 2007-07-12 04:29:15 +0000 |
commit | 75e3efd0184c7c5a93479ee812f8b888debf94af (patch) | |
tree | 62f320b4a0f287f330e2b7c7e540c46eb09ab8be | |
parent | 9fa8a5979d2e306c4395e645ab67c371b3a0fa46 (diff) | |
download | libgpod-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.am | 2 |
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 >> $@; \ |