summaryrefslogtreecommitdiff
path: root/Mk/Uses/python.mk
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2017-04-21 19:35:24 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2017-04-21 19:35:24 +0000
commitd3b29b8f765d188a98d5406f6b8652ff010a842b (patch)
treec6f04bd96bd502f3fd58ab5691e688902403c477 /Mk/Uses/python.mk
parentwww/mod_http2-devel: Update to 1.10.3 (diff)
Use POSIX conformant expressions with grep(1)
PR: 218690 Submitted by: Kyle Evans With hat: portmgr
Notes
Notes: svn path=/head/; revision=439125
Diffstat (limited to 'Mk/Uses/python.mk')
-rw-r--r--Mk/Uses/python.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/Uses/python.mk b/Mk/Uses/python.mk
index f7f478169fd2..4384714c9842 100644
--- a/Mk/Uses/python.mk
+++ b/Mk/Uses/python.mk
@@ -472,10 +472,10 @@ UNIQUE_SUFFIX= -${PYTHON_VER}
.if defined(_PYTHON_FEATURE_AUTOPLIST)
UNIQUE_FIND_SUFFIX_FILES= \
${SED} -e 's|^${PREFIX}/||' ${_PYTHONPKGLIST} ${TMPPLIST} | \
- ${GREP} -e '^bin/.*$$\|^sbin/.*$$\|^libexec/.*$$'
+ ${EGREP} -e '^bin/.*$$|^sbin/.*$$|^libexec/.*$$'
.else
UNIQUE_FIND_SUFFIX_FILES= \
- ${GREP} -he '^bin/.*$$\|^sbin/.*$$\|^libexec/.*$$' ${TMPPLIST} 2>/dev/null
+ ${EGREP} -he '^bin/.*$$|^sbin/.*$$|^libexec/.*$$' ${TMPPLIST} 2>/dev/null
.endif
.endif # defined(_PYTHON_FEATURE_CONCURRENT)