summaryrefslogtreecommitdiffstats
path: root/bindings
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
commit0d5e974b92f6385f644e736726fcc22a287916e3 (patch)
tree62f320b4a0f287f330e2b7c7e540c46eb09ab8be /bindings
parent9d308334f0e219af6c8765ba62835cc466b62f0f (diff)
downloadlibgpod-0d5e974b92f6385f644e736726fcc22a287916e3.tar.gz
libgpod-0d5e974b92f6385f644e736726fcc22a287916e3.tar.xz
libgpod-0d5e974b92f6385f644e736726fcc22a287916e3.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
Diffstat (limited to 'bindings')
-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 >> $@; \