diff options
author | wxs <wxs@FreeBSD.org> | 2010-01-10 21:12:32 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2010-01-10 21:12:32 +0800 |
commit | bd46fd1118ad200beb916709846423821c6cc36b (patch) | |
tree | 29579a4f69001699699fa41c690b5234352461f4 | |
parent | 2eabbdd8ada3c164214071696d156cead41ea10c (diff) | |
download | freebsd-ports-gnome-bd46fd1118ad200beb916709846423821c6cc36b.tar.gz freebsd-ports-gnome-bd46fd1118ad200beb916709846423821c6cc36b.tar.zst freebsd-ports-gnome-bd46fd1118ad200beb916709846423821c6cc36b.zip |
- Respect CFLAGS
PR: ports/142347
Submitted by: Rob Farmer <rfarmer@predatorlabs.net> (maintainer)
-rw-r--r-- | security/wipe/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/wipe/Makefile b/security/wipe/Makefile index 2575166fa565..59998827025e 100644 --- a/security/wipe/Makefile +++ b/security/wipe/Makefile @@ -7,7 +7,7 @@ PORTNAME= wipe PORTVERSION= 2.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= SF @@ -20,6 +20,9 @@ GNU_CONFIGURE= yes MAN1= wipe.1 PORTDOCS= CHANGES INSTALL LICENSE README TESTING TODO copyright +post-patch: + @${REINPLACE_CMD} -e 's|@CFLAGS@|${CFLAGS}|' ${WRKSRC}/Makefile.in + post-install: ${INSTALL_MAN} ${WRKSRC}/wipe.1 ${PREFIX}/man/man1 .if !defined(NOPORTDOCS) |