Magellan Linux

Contents of /trunk/groff/patches/groff-1.18-no-netpbm-depend.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 144 - (show annotations) (download)
Tue May 8 20:06:05 2007 UTC (17 years ago) by niro
File size: 920 byte(s)
-import

1 Don't install the example files. The second hunk is to workaround
2 shells that suck at life.
3
4 http://bugs.gentoo.org/show_bug.cgi?id=89174
5
6 --- groff-1.18/doc/Makefile.sub
7 +++ groff-1.18/doc/Makefile.sub
8 @@ -60,12 +60,12 @@
9 HTMLDOCIMAGEFILES=\
10 pic*
11
12 -EXAMPLEFILES=\
13 +EXAMPLEFILES=#\
14 webpage.ms \
15 grnexmpl.g \
16 grnexmpl.me
17
18 -PROCESSEDEXAMPLEFILES=\
19 +PROCESSEDEXAMPLEFILES=#\
20 webpage.ps \
21 gnu.eps \
22 gnu.png \
23 @@ -170,11 +170,11 @@
24 $(INSTALL_DATA) $$f $(docdir)/$$f; \
25 done
26 -test -d $(exampledir) || $(mkinstalldirs) $(exampledir)
27 - for f in $(EXAMPLEFILES); do \
28 + list="$(EXAMPLEFILES)"; for f in $${list}; do \
29 rm -f $(exampledir)/$$f; \
30 $(INSTALL_DATA) $(srcdir)/$$f $(exampledir)/$$f; \
31 done
32 - for f in $(PROCESSEDEXAMPLEFILES); do \
33 + list="$(PROCESSEDEXAMPLEFILES)"; for f in $${list}; do \
34 rm -f $(exampledir)/$$f; \
35 $(INSTALL_DATA) $$f $(exampledir)/$$f; \
36 done