All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bernhard Fischer <rep.nop@aon.at>
To: mrenzmann@otaku42.de, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH][RFC] Make documentation optional
Date: Fri, 10 Feb 2006 09:54:06 +0100	[thread overview]
Message-ID: <20060210085406.GA17813@aon.at> (raw)
In-Reply-To: <1139557720.5264.28.camel@gimli>

On Fri, Feb 10, 2006 at 08:48:39AM +0100, Michael Renzmann wrote:
>Hi again.
>
>On Fri, 2006-02-10 at 08:43 +0100, Michael Renzmann wrote:
>> The attached patch ...
>
>... contained some stuff that should have been ignored by diff. Sorry,
>revised patch attached to this mail.

>diff -urN qemu-cvs/Makefile qemu-cvs-o42/Makefile
>--- qemu-cvs/Makefile	2006-02-08 23:39:17.000000000 +0100
>+++ qemu-cvs-o42/Makefile	2006-02-10 08:31:17.000000000 +0100
>@@ -52,11 +53,19 @@
>                        pc-bios/ppc_rom.bin pc-bios/video.x \
>                        pc-bios/proll.elf \
>                        pc-bios/linux_boot.bin "$(datadir)"
>-	mkdir -p "$(docdir)"
>-	install -m 644 qemu-doc.html  qemu-tech.html "$(docdir)"

What about just doing this
	-install -m 644 qemu-doc.html  qemu-tech.html "$(docdir)"
>@@ -78,15 +87,27 @@
> 
> # documentation
> %.html: %.texi
>-	texi2html -monolithic -number $<
>+	if [ -n "$(shell which texi2html)" ]; then \
>+	    texi2html -monolithic -number $< ; \

same here:
	-texi2html -monolithic -number $< ;
>-	pod2man --section=1 --center=" " --release=" " qemu.pod > $@
>+	if [ -n "$(shell which pod2man)" ]; then \
>+		./texi2pod.pl $< qemu.pod ; \
>+		pod2man --section=1 --center=" " --release=" " qemu.pod > $@ ; \
>+	else \
>+		echo "WARNING: pod2man not found, skipped generation of" $@ ; \
>+	fi
> 
> qemu-img.1: qemu-img.texi
>-	./texi2pod.pl $< qemu-img.pod
>-	pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@

ditto:
	-pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@

  reply	other threads:[~2006-02-10  8:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-02-10  7:43 [Qemu-devel] [PATCH][RFC] Make documentation optional Michael Renzmann
2006-02-10  7:48 ` Michael Renzmann
2006-02-10  8:54   ` Bernhard Fischer [this message]
2006-02-10  8:59     ` Michael Renzmann
2006-02-10  9:33       ` Bernhard Fischer
2006-02-10  9:53         ` Michael Renzmann
2006-02-10 10:53         ` Sylvain Petreolle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060210085406.GA17813@aon.at \
    --to=rep.nop@aon.at \
    --cc=mrenzmann@otaku42.de \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.