diff options
author | wg <wg@FreeBSD.org> | 2013-11-04 21:17:51 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-11-04 21:17:51 +0800 |
commit | e512804b2b0e2d276c551979ac632bd7ff445543 (patch) | |
tree | 06e371685b9ae45fd619a17305bd60e306948e6a /lang | |
parent | 4731bf01ee9a0986344836e8fa927f6b046f9dd8 (diff) | |
download | freebsd-ports-gnome-e512804b2b0e2d276c551979ac632bd7ff445543.tar.gz freebsd-ports-gnome-e512804b2b0e2d276c551979ac632bd7ff445543.tar.zst freebsd-ports-gnome-e512804b2b0e2d276c551979ac632bd7ff445543.zip |
lang/itcl: fix sed for 8.x (no -r)
PR: ports/181391
Submitted by: Jeff Lawson <jeff.lawson flightaware.com>
Approved by: maintainer (timeout)
Diffstat (limited to 'lang')
-rw-r--r-- | lang/itcl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/itcl/Makefile b/lang/itcl/Makefile index 09b38af357c8..417caf484889 100644 --- a/lang/itcl/Makefile +++ b/lang/itcl/Makefile @@ -38,7 +38,7 @@ NO_STAGE= yes .include <bsd.port.pre.mk> post-patch: - ${REINPLACE_CMD} -r '/^includedir/s|/include|/include/itcl${PORTVERSION:R}|' \ + ${REINPLACE_CMD} -E '/^includedir/s|/include|/include/itcl${PORTVERSION:R}|' \ ${WRKSRC}/${CONFIGURE_SCRIPT} post-build test: |