diff options
author | 2020-11-02 00:16:35 +0100 | |
---|---|---|
committer | 2020-11-02 00:41:07 +0100 | |
commit | de6d7838925e9b1e49eb7ce695d6068470e71367 (patch) | |
tree | 968da4e25f011d12ba15424fa1151f773366fab8 /app-text/vgrep/files | |
parent | dev-lang/php: bump to v7.4.12 (diff) | |
download | gentoo-de6d7838925e9b1e49eb7ce695d6068470e71367.tar.gz gentoo-de6d7838925e9b1e49eb7ce695d6068470e71367.tar.bz2 gentoo-de6d7838925e9b1e49eb7ce695d6068470e71367.zip |
app-text/vgrep: bump to v2.5.0
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'app-text/vgrep/files')
-rw-r--r-- | app-text/vgrep/files/vgrep-2.5.0-remove-sudo.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app-text/vgrep/files/vgrep-2.5.0-remove-sudo.patch b/app-text/vgrep/files/vgrep-2.5.0-remove-sudo.patch new file mode 100644 index 000000000000..25764d199b45 --- /dev/null +++ b/app-text/vgrep/files/vgrep-2.5.0-remove-sudo.patch @@ -0,0 +1,15 @@ +https://github.com/vrothberg/vgrep/issues/130 + +--- a/Makefile ++++ b/Makefile +@@ -113,7 +113,8 @@ install: install-docs + + .PHONY: install-docs + install-docs: docs +- sudo cp docs/*.1 ${MAN_DIR}/man1/ ++ mkdir -p ${MAN_DIR}/man1/ ++ cp docs/*.1 ${MAN_DIR}/man1/ + + .PHONY: uninstall + uninstall: + |