svn commit: r342874 - head/usr.bin/grep
Kyle Evans
kevans at FreeBSD.org
Wed Jan 9 02:47:09 UTC 2019
Author: kevans
Date: Wed Jan 9 02:47:07 2019
New Revision: 342874
URL: https://svnweb.freebsd.org/changeset/base/342874
Log:
Fix bsdgrep manpage clobbering grep(1) with default build options
The default build should install bsdgrep(1) and grep(1), with the latter
being gnugrep(1). WITH_BSD_GREP flips this situation such that we have
gnugrep(1) and grep(1), with the latter being bsdgrep(1).
Changes to start installing the zgrep script out of usr.bin/grep
inadvertently altered the default build such that grep(1) was being
installed, and it was bsdgrep(1). Correct the typo.
Reported by: bcran
MFC after: 3 days
Modified:
head/usr.bin/grep/Makefile
Modified: head/usr.bin/grep/Makefile
==============================================================================
--- head/usr.bin/grep/Makefile Wed Jan 9 01:16:35 2019 (r342873)
+++ head/usr.bin/grep/Makefile Wed Jan 9 02:47:07 2019 (r342874)
@@ -10,7 +10,7 @@ MAN1= grep.1 zgrep.1
.else
PROG= bsdgrep
CLEANFILES+= bsdgrep.1
-MAN1= grep.1 zgrep.1
+MAN1= bsdgrep.1 zgrep.1
bsdgrep.1: grep.1
${CP} ${.ALLSRC} ${.TARGET}
More information about the svn-src-all
mailing list