diff options
-rw-r--r-- | patches/01_man-install-to-usr-bin-not-sbin.patch | 19 |
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)) |