diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-14 07:59:21 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-14 07:59:21 +0000 |
commit | cdc24b238562f40aa9146a086086c381348309e1 (patch) | |
tree | b53305b3a5e4cb4fe70d8736ef1da1c80f1c0907 /net/passlogd | |
parent | bb340c1e0e17a58966b3d5f5a019acad0cec1b3e (diff) |
Fixed damage done to the regular expression by REINPLACE_CMD
Noticed on: bento
Notes
Notes:
svn path=/head/; revision=70086
Diffstat (limited to 'net/passlogd')
-rw-r--r-- | net/passlogd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/passlogd/Makefile b/net/passlogd/Makefile index 5c3bd7d949dd..dd79e334d791 100644 --- a/net/passlogd/Makefile +++ b/net/passlogd/Makefile @@ -15,7 +15,7 @@ MAINTAINER= petef@FreeBSD.org USE_REINPLACE= yes post-patch: - ${REINPLACE_CMD} -e "s|.\(CXX\)|${CC} ${CFLAGS}|g" ${WRKSRC}/Makefile + ${REINPLACE_CMD} -e "s|.(CXX)|${CC} ${CFLAGS}|g" ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/passlogd ${PREFIX}/sbin |