maintainer-feedback requested: [Bug 228673] [PATCH] graphics/mesa-dri - configure script fails with BSD grep
| Newsgroups | gmane.os.freebsd.devel.x11 |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
Bugzilla Automation <[email protected]> has asked freebsd-x11 mailing list <[email protected]> for maintainer-feedback: Bug 228673: [PATCH] graphics/mesa-dri - configure script fails with BSD grep https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=228673 --- Description --- The configure script uses a non-standard syntax not supported by the BSD grep in -CURRENT. This is easily fixed by use of grep -E or egrep (see attached patch, which makes configure work with ancient and current GNU grep and BSD grep). The problematic command is: echo $platforms | grep -q "x11\|drm" The standard compliant form that does not depend on GNU grep is: echo $platforms | egrep -q "x11|drm" _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-x11 To unsubscribe, send any mail to "[email protected]"