[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: branch: master updated (1.1.1.20070708-34-g525b4a0)
The branch, master has been updated
via 525b4a0ff3a1b8cc321f117513796e4571702da8 (commit)
from 30a86f3458c5a1562d97d33b06320647ed23132e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
gnetlist/docs/Makefile.am | 6 +++---
gsymcheck/docs/Makefile.am | 6 +++---
symbols/documentation/Makefile.am | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
=================
Commit Messages
=================
commit 525b4a0ff3a1b8cc321f117513796e4571702da8
Author: Bernd Jendrisse <bernd.jendrissek@xxxxxxxxx>
Date: Sun Jul 29 09:56:33 2007 -0400
Applied patch to use $(GROFF) instead of which groff
:100644 100644 54ee47b... 3ca95e8... M gnetlist/docs/Makefile.am
:100644 100644 7bf5484... 1704a98... M gsymcheck/docs/Makefile.am
:100644 100644 20decc2... bbe037c... M symbols/documentation/Makefile.am
=========
Changes
=========
commit 525b4a0ff3a1b8cc321f117513796e4571702da8
Author: Bernd Jendrisse <bernd.jendrissek@xxxxxxxxx>
Date: Sun Jul 29 09:56:33 2007 -0400
Applied patch to use $(GROFF) instead of which groff
diff --git a/gnetlist/docs/Makefile.am b/gnetlist/docs/Makefile.am
index 54ee47b..3ca95e8 100644
--- a/gnetlist/docs/Makefile.am
+++ b/gnetlist/docs/Makefile.am
@@ -19,14 +19,14 @@ docsman_DATA = gnetlist.html
%.html: %.1
@echo "Creating html manpage (using groff)"
@rm -rf $*.tmp
- @if which groff >/dev/null 2>/dev/null; then \
- LC_NUMERIC=C groff -man -T html $*.1 >$*.tmp ;\
+ @if test "x$(GROFF)" != xno; then \
+ LC_NUMERIC=C $(GROFF) -man -T html $*.1 >$*.tmp;\
+ mv -f $*.tmp $*.html ;\
else \
echo "** Did not find groff **" ;\
echo "Some Documentation might not be correct!" ;\
touch $*.html ;\
fi
- @mv -f $*.tmp $*.html
gnetlist.html: gnetlist.1
diff --git a/gsymcheck/docs/Makefile.am b/gsymcheck/docs/Makefile.am
index 7bf5484..1704a98 100644
--- a/gsymcheck/docs/Makefile.am
+++ b/gsymcheck/docs/Makefile.am
@@ -12,14 +12,14 @@ docsman_DATA = gsymcheck.html
%.html: %.1
@echo "Creating html manpage (using groff)"
@rm -rf $*.tmp
- @if which groff >/dev/null 2>/dev/null; then \
- LC_NUMERIC=C groff -man -T html $*.1 >$*.tmp ;\
+ @if test "x$(GROFF)" != xno; then \
+ LC_NUMERIC=C $(GROFF) -man -T html $*.1 >$*.tmp;\
+ mv -f $*.tmp $*.html ;\
else \
echo "** Did not find groff **" ;\
echo "Some Documentation might not be correct!" ;\
touch $*.html ;\
fi
- @mv -f $*.tmp $*.html
gsymcheck.html: gsymcheck.1
diff --git a/symbols/documentation/Makefile.am b/symbols/documentation/Makefile.am
index 20decc2..bbe037c 100644
--- a/symbols/documentation/Makefile.am
+++ b/symbols/documentation/Makefile.am
@@ -22,14 +22,14 @@ BUILT_SOURCES = geda.pic nc.pdf nc.ps
%.ps: %.doc
@echo "Creating ps (using groff)"
@rm -rf $*.tmp
- @if which groff >/dev/null 2>/dev/null; then \
- LC_NUMERIC=C groff -t -sp -ms $*.doc >$*.tmp ;\
+ @if test "x$(GROFF)" != xno; then \
+ LC_NUMERIC=C $(GROFF) -t -sp -ms $*.doc >$*.tmp ;\
+ mv -f $*.tmp $*.ps ;\
else \
echo "** Did not find groff **" ;\
echo "Some Documentation might not be correct!" ;\
touch $*.ps ;\
fi
- @mv -f $*.tmp $*.ps
%.pdf: %.ps
@echo "Creating pdf (using ps2pdf)"
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs