diff options
author | kwm <kwm@FreeBSD.org> | 2009-09-28 03:10:45 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2009-09-28 03:10:45 +0800 |
commit | 3e44638507a4df18d8e066b1bcd329ed1949d73a (patch) | |
tree | a9827bf00a29d494398930cdc6067262a7e14071 /devel | |
parent | b1de1b4a11758ffe2f1c061782f0fe479c112db2 (diff) | |
download | freebsd-ports-gnome-3e44638507a4df18d8e066b1bcd329ed1949d73a.tar.gz freebsd-ports-gnome-3e44638507a4df18d8e066b1bcd329ed1949d73a.tar.zst freebsd-ports-gnome-3e44638507a4df18d8e066b1bcd329ed1949d73a.zip |
If a user has textproc/gsed installed, configure prefers it over base sed.
This gets hardcoded into libtool. After gsed is removed, libtool breaks.
Make sure configure doesn't pick up gsed.
Submitted by: stass@
Approved by: portmgr (marcus)
Feature safe: yes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libtool22/Makefile | 4 | ||||
-rw-r--r-- | devel/libtool24/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/devel/libtool22/Makefile b/devel/libtool22/Makefile index 5819e34e3f23..090a37b56025 100644 --- a/devel/libtool22/Makefile +++ b/devel/libtool22/Makefile @@ -7,6 +7,7 @@ PORTNAME?= libtool PORTVERSION= 2.2.6a +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool @@ -21,4 +22,7 @@ CONFIGURE_ARGS?= --disable-ltdl-install CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" INFO?= libtool +post-patch: + ${REINPLACE_CMD} -e 's|sed gsed|sed|g' ${WRKSRC}/configure + .include <bsd.port.mk> diff --git a/devel/libtool24/Makefile b/devel/libtool24/Makefile index 5819e34e3f23..090a37b56025 100644 --- a/devel/libtool24/Makefile +++ b/devel/libtool24/Makefile @@ -7,6 +7,7 @@ PORTNAME?= libtool PORTVERSION= 2.2.6a +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool @@ -21,4 +22,7 @@ CONFIGURE_ARGS?= --disable-ltdl-install CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" INFO?= libtool +post-patch: + ${REINPLACE_CMD} -e 's|sed gsed|sed|g' ${WRKSRC}/configure + .include <bsd.port.mk> |