diff options
author | Andrej Zverev <az@FreeBSD.org> | 2013-07-26 07:33:41 +0000 |
---|---|---|
committer | Andrej Zverev <az@FreeBSD.org> | 2013-07-26 07:33:41 +0000 |
commit | 19ae251b54b068aae1520c17885ecae948e723bc (patch) | |
tree | e2c71147def7c03ff268350288657b4e7692d180 /irc | |
parent | be856e74d2486c2042594b76c9cade12ee3f3c07 (diff) | |
download | freebsd-ports-19ae251b54b068aae1520c17885ecae948e723bc.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: |