diff options
author | Matthew Rezny <rezny@FreeBSD.org> | 2017-02-12 23:49:35 +0800 |
---|---|---|
committer | Matthew Rezny <rezny@FreeBSD.org> | 2017-02-12 23:49:35 +0800 |
commit | 086043a82cc171f544135d8bc440b961c8d4f81c (patch) | |
tree | b4f100e5875a7cc28fdbc631bb11b8fe67469ee5 | |
parent | 6a77d5e20c88c1b84794ce1456168ba305c47f42 (diff) | |
download | freebsd-ports-gnome-086043a82cc171f544135d8bc440b961c8d4f81c.tar.gz freebsd-ports-gnome-086043a82cc171f544135d8bc440b961c8d4f81c.tar.zst freebsd-ports-gnome-086043a82cc171f544135d8bc440b961c8d4f81c.zip |
Add one sed command, courtesy of madpilot, to replicate a section of changes
that were over-eagerly trimmed from patch-configure in the last commit.
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D9555
-rw-r--r-- | graphics/libGL/Makefile.targets | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/libGL/Makefile.targets b/graphics/libGL/Makefile.targets index 0c999b52593f..ca60d5a2543f 100644 --- a/graphics/libGL/Makefile.targets +++ b/graphics/libGL/Makefile.targets @@ -17,7 +17,7 @@ post-patch: .endif .endif # Sed on 9.x and dragonfly don't support \< or \> - @${REINPLACE_CMD} -e 's|\\>//|[[:>:]]//|' \ + @${REINPLACE_CMD} -e 's|\\>//|[[:>:]]//|' -e 's|\\S\*//|[:graph:]* //|' \ ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|g' \ ${WRKSRC}/src/mesa/drivers/dri/common/xmlconfig.c |