Date: Fri, 21 Apr 2017 19:35:24 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r439125 - head/Mk/Uses Message-ID: <201704211935.v3LJZOEx062160@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Fri Apr 21 19:35:24 2017 New Revision: 439125 URL: https://svnweb.freebsd.org/changeset/ports/439125 Log: Use POSIX conformant expressions with grep(1) PR: 218690 Submitted by: Kyle Evans With hat: portmgr Modified: head/Mk/Uses/python.mk Modified: head/Mk/Uses/python.mk ============================================================================== --- head/Mk/Uses/python.mk Fri Apr 21 19:11:13 2017 (r439124) +++ head/Mk/Uses/python.mk Fri Apr 21 19:35:24 2017 (r439125) @@ -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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704211935.v3LJZOEx062160>