* [PATCH] DocBook: don't compress mandocs
@ 2008-08-08 7:47 Bastian Blank
2008-08-08 21:45 ` Sam Ravnborg
0 siblings, 1 reply; 3+ messages in thread
From: Bastian Blank @ 2008-08-08 7:47 UTC (permalink / raw)
To: linux-doc; +Cc: linux-kernel, akpm
The mandocs target uses gzip to compress the resulting manpages. If this
target runs more than once (using make -jX) at the same time, gzip may
run more then once with the same set of files. It just bails out if it
is not able to find a file because a concurrent run already removed it.
Fix this by removing the gzip call and only work with uncompressed
manpages.
Signed-off-by: Bastian Blank <waldi@debian.org>
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile
index 1d1b345..3fb6ef2 100644
--- a/Documentation/DocBook/Makefile
+++ b/Documentation/DocBook/Makefile
@@ -51,7 +51,7 @@ mandocs: $(MAN)
installmandocs: mandocs
mkdir -p /usr/local/man/man9/
- install Documentation/DocBook/man/*.9.gz /usr/local/man/man9/
+ install Documentation/DocBook/man/*.9 /usr/local/man/man9/
###
#External programs used
@@ -156,7 +156,7 @@ quiet_cmd_db2html = HTML $@
cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi
quiet_cmd_db2man = MAN $@
- cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; gzip -f $(obj)/man/*.9; fi
+ cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $<; fi
%.9 : %.xml
@(which xmlto > /dev/null 2>&1) || \
(echo "*** You need to install xmlto ***"; \
--
Only a fool fights in a burning house.
-- Kank the Klingon, "Day of the Dove", stardate unknown
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] DocBook: don't compress mandocs
2008-08-08 7:47 [PATCH] DocBook: don't compress mandocs Bastian Blank
@ 2008-08-08 21:45 ` Sam Ravnborg
2008-08-09 6:42 ` Bastian Blank
0 siblings, 1 reply; 3+ messages in thread
From: Sam Ravnborg @ 2008-08-08 21:45 UTC (permalink / raw)
To: Bastian Blank, linux-doc, linux-kernel, akpm
On Fri, Aug 08, 2008 at 09:47:24AM +0200, Bastian Blank wrote:
> The mandocs target uses gzip to compress the resulting manpages. If this
> target runs more than once (using make -jX) at the same time, gzip may
> run more then once with the same set of files. It just bails out if it
> is not able to find a file because a concurrent run already removed it.
>
> Fix this by removing the gzip call and only work with uncompressed
> manpages.
If it failded with gzip being run more than once before this
patch does not solve the bug - it simply makes it harder to trigger.
Anything that does not work with a make -j100 build is broken.
And please understand that we have people that uses "make -j100" when building
the kernel.
These people most likely does not do "make mandocs" but we should still fix
the bug and not try to paper it over in this way.
So try to analyse why we in the first place will run gzip in parallele and solve that.
Sam
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] DocBook: don't compress mandocs
2008-08-08 21:45 ` Sam Ravnborg
@ 2008-08-09 6:42 ` Bastian Blank
0 siblings, 0 replies; 3+ messages in thread
From: Bastian Blank @ 2008-08-09 6:42 UTC (permalink / raw)
To: Sam Ravnborg; +Cc: linux-doc, linux-kernel, akpm
[-- Attachment #1: Type: text/plain, Size: 1428 bytes --]
On Fri, Aug 08, 2008 at 11:45:04PM +0200, Sam Ravnborg wrote:
> On Fri, Aug 08, 2008 at 09:47:24AM +0200, Bastian Blank wrote:
> > The mandocs target uses gzip to compress the resulting manpages. If this
> > target runs more than once (using make -jX) at the same time, gzip may
> > run more then once with the same set of files. It just bails out if it
> > is not able to find a file because a concurrent run already removed it.
> >
> > Fix this by removing the gzip call and only work with uncompressed
> > manpages.
>
> If it failded with gzip being run more than once before this
> patch does not solve the bug - it simply makes it harder to trigger.
No, the problem does not longer exists then. Or do you see a "*" to be
expanded on runtime?
> Anything that does not work with a make -j100 build is broken.
> And please understand that we have people that uses "make -j100" when building
> the kernel.
I only use -j64 ...
> These people most likely does not do "make mandocs" but we should still fix
> the bug and not try to paper it over in this way.
>
> So try to analyse why we in the first place will run gzip in parallele and solve that.
make mandocs
-> make a.9 b.9 c.9 d.9 ... z.9
-> xmlto a.xml; gzip *
-> xmlto b.xml; gzip *
-> xmlto c.xml; gzip *
-> xmlto d.xml; gzip *
...
-> xmlto z.xml; gzip *
Bastian
--
Captain's Log, star date 21:34.5...
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-08-09 6:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-08 7:47 [PATCH] DocBook: don't compress mandocs Bastian Blank
2008-08-08 21:45 ` Sam Ravnborg
2008-08-09 6:42 ` Bastian Blank
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®