Summary: | Uses/python.mk: Use POSIX conformant expressions with grep(1) | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Kyle Evans <kevans> | ||||
Component: | Ports Framework | Assignee: | Port Management Team <portmgr> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | emaste, ports-bugs | ||||
Priority: | --- | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Bug Depends on: | |||||||
Bug Blocks: | 218385 | ||||||
Attachments: |
|
A commit references this bug: Author: antoine Date: Fri Apr 21 19:35:24 UTC 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 Changes: head/Mk/Uses/python.mk |
Created attachment 181826 [details] svn(1) diff of Uses/python.mk Hi, A recent exp-run (PR 218385) with a grep(1) lacking GNU extensions revealed two cases of branching with BREs, which is an ERE-only feature by IEEE 1003.2. This can be fixed by using EGREP/grep -e for branching, patch is attached. =)