Module Name: src
Committed By: christos
Date: Sun Aug 12 07:59:14 UTC 2018
Modified Files:
src/usr.bin/grep: Makefile
Log Message:
remove stray paren
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.bin/grep/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/grep/Makefile
diff -u src/usr.bin/grep/Makefile:1.7 src/usr.bin/grep/Makefile:1.8
--- src/usr.bin/grep/Makefile:1.7 Sun Aug 12 03:53:19 2018
+++ src/usr.bin/grep/Makefile Sun Aug 12 03:59:14 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2018/08/12 07:53:19 christos Exp $
+# $NetBSD: Makefile,v 1.8 2018/08/12 07:59:14 christos Exp $
# $FreeBSD: head/usr.bin/grep/Makefile 210389 2010-07-22 19:11:57Z gabor $
# $OpenBSD: Makefile,v 1.6 2003/06/25 15:00:04 millert Exp $
@@ -20,7 +20,7 @@ MLINKS= grep.1 egrep.1 \
LDADD+= -lz
DPADD+= ${LIBZ}
-.if empty(HOST_CPPFLAGS:M(*-DWITHOUT_BZ2*)
+.if empty(HOST_CPPFLAGS:M*-DWITHOUT_BZ2*)
LDADD+= -lz
DPADD+= ${LIBZ}
.endif