diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-03-30 05:26:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-03-30 05:26:34 +0000 |
commit | 5f9f1506ad298c94e816780a3e2d5692d002fb81 (patch) | |
tree | 5a67d178d210222824e4d9d128bdf8626cd44006 | |
parent | 0080ea7992c4c0236ff58497e6342cbe4aafc0c3 (diff) | |
download | busybox-w32-5f9f1506ad298c94e816780a3e2d5692d002fb81.tar.gz busybox-w32-5f9f1506ad298c94e816780a3e2d5692d002fb81.tar.bz2 busybox-w32-5f9f1506ad298c94e816780a3e2d5692d002fb81.zip |
fix DOC build output to be like kbuild standard
-rw-r--r-- | Makefile.custom | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.custom b/Makefile.custom index 140ff45c2..d9a2367ab 100644 --- a/Makefile.custom +++ b/Makefile.custom | |||
@@ -106,8 +106,10 @@ bigdata: busybox_unstripped | |||
106 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html | 106 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html |
107 | 107 | ||
108 | # FIXME: Doesn't belong here | 108 | # FIXME: Doesn't belong here |
109 | disp_doc = \ | 109 | cmd_doc = |
110 | @$(if $(quiet),echo " DOC $(@F)") | 110 | quiet_cmd_doc = $(Q)echo " DOC $(@F)" |
111 | silent_cmd_doc = | ||
112 | disp_doc = $($(quiet)cmd_doc) | ||
111 | 113 | ||
112 | docs/busybox.pod: $(srctree)/docs/busybox_header.pod \ | 114 | docs/busybox.pod: $(srctree)/docs/busybox_header.pod \ |
113 | $(srctree)/include/usage.h \ | 115 | $(srctree)/include/usage.h \ |