From: Antonio (antoniochiurla_at_programmino.it)
Date: Fri Apr 14 2006 - 14:38:54 CEST
From: Antonio <antoniochiurla@programmino.it> Message-ID: <1a45.443f97de@www.taskjuggler.org> Date: Fri, 14 Apr 2006 14:38:54 +0200 (CEST) Subject: [taskjuggler-devel] build failure without docbook-utils
Hi,
( Yes, my english is very bad... sorry :roll: )
I'm compiling taskjuggler in my box ( SuSE 10.0 )
where is not installed docbook-utils, receiving
an error at compile time, I've modified the file
man/en/Makefile.in in order to solve problem,
follow the patch:
diff -ru taskjuggler-svn20060321/man/en/Makefile.in taskjuggler-programmino/man/en/Makefile.in
--- taskjuggler-svn20060321/man/en/Makefile.in 2006-03-21 15:07:37.000000000 +0100
+++ taskjuggler-programmino/man/en/Makefile.in 2006-04-13 12:26:11.000000000 +0200
@@ -539,7 +539,10 @@
.xml.1:
- $(DOCBOOK_TO_MAN) --to-stdout $< > $@
+ @if test "${DOCBOOK_TO_MAN}" != "no" ; then \
+ $(DOCBOOK_TO_MAN) --to-stdout $< > $@ ; \
+ fi
+
clean-local:
rm -f *.1
I hope that's correct.
-- To unsubscribe, email: taskjuggler-devel-unsubscribe@suse.com For additional commands, email: taskjuggler-devel-help@suse.com
This archive was generated by hypermail 2.1.7 : Fri Apr 14 2006 - 14:39:00 CEST