diff options
author | Anders Nordby <anders@FreeBSD.org> | 2002-11-06 21:27:06 +0800 |
---|---|---|
committer | Anders Nordby <anders@FreeBSD.org> | 2002-11-06 21:27:06 +0800 |
commit | a80cb50ea1091bf3eb8b582bf422da7a081e2e70 (patch) | |
tree | 7592423c3465eb991ecd7fe74b1987c265eaf113 | |
parent | d50a6ac127d4f1bce1e5841c3b936b7ecc140416 (diff) | |
download | freebsd-ports-gnome-a80cb50ea1091bf3eb8b582bf422da7a081e2e70.tar.gz freebsd-ports-gnome-a80cb50ea1091bf3eb8b582bf422da7a081e2e70.tar.zst freebsd-ports-gnome-a80cb50ea1091bf3eb8b582bf422da7a081e2e70.zip |
Don't use REINPLACE_CMD -ne.
Pointy hat to: edwin
-rw-r--r-- | mail/cclient/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/cclient/Makefile b/mail/cclient/Makefile index 16b52b883092..074c2bb00a88 100644 --- a/mail/cclient/Makefile +++ b/mail/cclient/Makefile @@ -46,7 +46,7 @@ SHLIBNAME= lib${SHLIBBASE}.so.${SHLIBMAJ}.0 post-patch: .for file in ${PREFIX_FIX_FILES} - @${REINPLACE_CMD} -ne "s!/usr/local!${PREFIX}!g" ${WRKSRC}/${file} + @${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|g" ${WRKSRC}/${file} .endfor post-configure: |