* [Qemu-devel] [PATCH] Don't install HTML if its not generated
@ 2006-04-26 2:10 Chris Bagwell
2006-04-27 2:11 ` [Qemu-devel] " Chris Bagwell
0 siblings, 1 reply; 2+ messages in thread
From: Chris Bagwell @ 2006-04-26 2:10 UTC (permalink / raw)
To: qemu-devel
Hi all,
There was a patch added to CVS that detects if tools exist to build
documentation. This helped me during the compile phase since I don't
have those tools installed.
I had a failure during the install phase because it still tried to
install the non-existent docs.
Following patch fixed that for me.
diff -r1.97 Makefile
58a59
> ifdef BUILD_DOCS
59a61
> endif
Chris
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Qemu-devel] Re: [PATCH] Don't install HTML if its not generated
2006-04-26 2:10 [Qemu-devel] [PATCH] Don't install HTML if its not generated Chris Bagwell
@ 2006-04-27 2:11 ` Chris Bagwell
0 siblings, 0 replies; 2+ messages in thread
From: Chris Bagwell @ 2006-04-27 2:11 UTC (permalink / raw)
To: Chris Bagwell; +Cc: qemu-devel
I included a context diff this time to make it easier to see the problem.
Chris
--- Makefile 23 Apr 2006 17:57:59 -0000 1.97
+++ Makefile 27 Apr 2006 02:09:07 -0000
@@ -56,7 +56,9 @@
$(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x
"$(DESTDIR)$(datadir)"; \
done
+ifdef BUILD_DOCS
mkdir -p "$(DESTDIR)$(docdir)"
$(INSTALL) -m 644 qemu-doc.html qemu-tech.html
"$(DESTDIR)$(docdir)"
+endif
ifndef CONFIG_WIN32
mkdir -p "$(DESTDIR)$(mandir)/man1"
$(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-04-27 2:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-26 2:10 [Qemu-devel] [PATCH] Don't install HTML if its not generated Chris Bagwell
2006-04-27 2:11 ` [Qemu-devel] " Chris Bagwell
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.