summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-26 17:57:57 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-26 17:57:57 (EDT)
commit56cce3564ae592cedcb7e3f1980e851fa083da62 (patch)
treecdbe08d2c2d95438854a39b8137bbf4f457cbb25
parent1a2e616d1619716123885f87dd7b356f60cc184b (diff)
Add patch to fix installation dir of man applet.
-rw-r--r--patches/01_man-install-to-usr-bin-not-sbin.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/01_man-install-to-usr-bin-not-sbin.patch b/patches/01_man-install-to-usr-bin-not-sbin.patch
new file mode 100644
index 0000000..76a5234
--- /dev/null
+++ b/patches/01_man-install-to-usr-bin-not-sbin.patch
@@ -0,0 +1,19 @@
+From: Denys Vlasenko <vda.linux@googlemail.com>
+Date: Wed, 27 Mar 2013 13:30:18 +0000
+Subject: man: install to /usr/bin, not /sbin
+Origin: upstream, http://git.busybox.net/busybox/commit/?id=80a38ca1
+
+---
+diff --git a/include/applets.src.h b/include/applets.src.h
+index 29ab167..00172b1 100644
+--- a/include/applets.src.h
++++ b/include/applets.src.h
+@@ -236,7 +236,7 @@ IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP))
+ IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, lzopcat))
+ IF_MAKEDEVS(APPLET(makedevs, BB_DIR_SBIN, BB_SUID_DROP))
+ IF_MAKEMIME(APPLET(makemime, BB_DIR_BIN, BB_SUID_DROP))
+-IF_MAN(APPLET(man, BB_DIR_SBIN, BB_SUID_DROP))
++IF_MAN(APPLET(man, BB_DIR_USR_BIN, BB_SUID_DROP))
+ IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP))
+ IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, md5sum))
+ IF_MICROCOM(APPLET(microcom, BB_DIR_USR_BIN, BB_SUID_DROP))