Magellan Linux

Annotation of /trunk/groff/patches/groff-1.19.2-no-netpbm-depend.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 144 - (hide annotations) (download)
Tue May 8 20:06:05 2007 UTC (17 years, 1 month ago) by niro
File size: 866 byte(s)
-import

1 niro 144 --- groff-1.19.2/doc/Makefile.sub.orig 2005-10-14 16:12:50.000000000 +0000
2     +++ groff-1.19.2/doc/Makefile.sub 2005-10-14 16:14:04.000000000 +0000
3     @@ -69,13 +69,13 @@
4     HTMLDOCIMAGEFILES=\
5     pic*
6    
7     -EXAMPLEFILES=\
8     +EXAMPLEFILES=#\
9     webpage.ms \
10     groff.css \
11     grnexmpl.g \
12     grnexmpl.me
13    
14     -PROCESSEDEXAMPLEFILES=\
15     +PROCESSEDEXAMPLEFILES=#\
16     webpage.ps \
17     grnexmpl.ps
18    
19     @@ -186,11 +186,11 @@
20     $(INSTALL_DATA) $$f $(docdir)/$$f; \
21     done
22     -test -d $(exampledir) || $(mkinstalldirs) $(exampledir)
23     - for f in $(EXAMPLEFILES); do \
24     + list="$(EXAMPLEFILES)"; for f in $${list}; do \
25     rm -f $(exampledir)/$$f; \
26     $(INSTALL_DATA) $(srcdir)/$$f $(exampledir)/$$f; \
27     done
28     - for f in $(PROCESSEDEXAMPLEFILES); do \
29     + list="$(PROCESSEDEXAMPLEFILES)"; for f in $${list}; do \
30     rm -f $(exampledir)/$$f; \
31     $(INSTALL_DATA) $$f $(exampledir)/$$f; \
32     done