diff options
author | Nikil Mehta <nikil.mehta@gmail.com> | 2016-11-23 10:13:00 -0800 |
---|---|---|
committer | Nikil Mehta <nikil.mehta@gmail.com> | 2017-03-18 23:56:56 -0700 |
commit | c4a7b1466ad900b55e2e4fbad1217df0f3c1fee0 (patch) | |
tree | ac597e525ece7c94f0261d2c11f0b3f0a1155dba /utils/moreutils/patches | |
parent | 0fcdd8d84d493b9f5097f88bd8f8dbc5628d6f74 (diff) |
moreutils: Add package
Signed-off-by: Nikil Mehta <nikil.mehta@gmail.com>
Diffstat (limited to 'utils/moreutils/patches')
-rw-r--r-- | utils/moreutils/patches/001_disable-manuals.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/utils/moreutils/patches/001_disable-manuals.patch b/utils/moreutils/patches/001_disable-manuals.patch new file mode 100644 index 000000000..c777108b6 --- /dev/null +++ b/utils/moreutils/patches/001_disable-manuals.patch @@ -0,0 +1,21 @@ +--- a/Makefile ++++ b/Makefile +@@ -13,7 +13,7 @@ + + DOCBOOK2XMAN=xsltproc --param man.authors.section.enabled 0 $(DOCBOOKXSL)/manpages/docbook.xsl + +-all: $(BINS) $(MANS) ++all: $(BINS) + + clean: + rm -f $(BINS) $(MANS) dump.c errnos.h errno.o +@@ -27,9 +27,6 @@ + $(INSTALL_BIN) $(BINS) $(DESTDIR)$(PREFIX)/bin + install $(PERLSCRIPTS) $(DESTDIR)$(PREFIX)/bin + +- mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 +- install $(MANS) $(DESTDIR)$(PREFIX)/share/man/man1 +- + check: isutf8 + ./is_utf8/test.sh + |