aboutsummaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-Makefile
blob: 1dc9c0b94f2de2452d8c10218b82216750260aed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Index: qemu/Makefile
@@ -19,14 +19,19 @@
 BASE_LDFLAGS += -static
 endif
 ifdef BUILD_DOCS
+ifdef NOPORTDOCS
+DOCS=qemu.1 qemu-img.1
+else
 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
+endif
 else
 DOCS=
 endif
 
 ifndef CONFIG_DARWIN
 ifndef CONFIG_WIN32
-LIBS+=-lrt
+# XXX need ifndef CONFIG_BSD
+# LIBS+=-lrt
 endif
 endif
 
@@ -64,8 +69,10 @@
 common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
 
 install-doc: $(DOCS)
+ifndef NOPORTDOCS
 	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"