diff options
author | az <az@FreeBSD.org> | 2013-07-26 15:33:41 +0800 |
---|---|---|
committer | az <az@FreeBSD.org> | 2013-07-26 15:33:41 +0800 |
commit | 665183f53eb74ec3fb00d82d5e4d998804f85ad2 (patch) | |
tree | e2c71147def7c03ff268350288657b4e7692d180 /irc | |
parent | e80ef1fc474e04a3b1999f45fd39114572d34f44 (diff) | |
download | freebsd-ports-gnome-665183f53eb74ec3fb00d82d5e4d998804f85ad2.tar.gz freebsd-ports-gnome-665183f53eb74ec3fb00d82d5e4d998804f85ad2.tar.zst freebsd-ports-gnome-665183f53eb74ec3fb00d82d5e4d998804f85ad2.zip |
- switch simple inline replacement from perl to sed
and remove where is no need in this anymore.
- trim Makefile header
Approved by: bapt@ (portmrg@)
Diffstat (limited to 'irc')
-rw-r--r-- | irc/xchat1/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/irc/xchat1/Makefile b/irc/xchat1/Makefile index 8828664425b6..3abd17dc0b0e 100644 --- a/irc/xchat1/Makefile +++ b/irc/xchat1/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: xchat -# Date created: 17 Nov 1998 -# Whom: Jim Mock <jim@FreeBSD.org> -# +# Created by: Jim Mock <jim@FreeBSD.org> # $FreeBSD$ -# PORTNAME= xchat PORTVERSION= 1.8.11 @@ -66,8 +62,7 @@ CONFIGURE_ARGS+= --disable-gnome --disable-zvt .endif post-patch: - @${PERL} -pi \ - -e 's|-lpthread|${PTHREAD_LIBS}|g;' \ + @${REINPLACE_CMD} -i '' -e 's|-lpthread|${PTHREAD_LIBS}|g' \ ${WRKSRC}/configure post-install: |