diff options
author | gahr <gahr@FreeBSD.org> | 2011-11-23 17:02:10 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2011-11-23 17:02:10 +0800 |
commit | 9d73aacd20484747fb28e7186e9888f5e1634586 (patch) | |
tree | fade879ab224129b2e2f53c463cb89ca7a42e58f /lang/nbfc | |
parent | 70f3856c4e8c7b670c69a494997133e31c0d8557 (diff) | |
download | freebsd-ports-gnome-9d73aacd20484747fb28e7186e9888f5e1634586.tar.gz freebsd-ports-gnome-9d73aacd20484747fb28e7186e9888f5e1634586.tar.zst freebsd-ports-gnome-9d73aacd20484747fb28e7186e9888f5e1634586.zip |
- Respect CC and CFLAGS
PR: 162538
Submitted by: Jan Beich <jbeich@tormail.net>
Feature safe: yes
Diffstat (limited to 'lang/nbfc')
-rw-r--r-- | lang/nbfc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/nbfc/Makefile b/lang/nbfc/Makefile index b587d1217bd0..cf2a0fbdc2dc 100644 --- a/lang/nbfc/Makefile +++ b/lang/nbfc/Makefile @@ -18,7 +18,7 @@ MAN1= nbfc.1 PLIST_FILES= bin/nbfc post-patch: - ${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g;s|bison -y|yacc -|g' \ + ${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g; s|bison -y|${YACC} -|g; s|gcc|${CC} ${CFLAGS}|g' \ ${WRKSRC}/Makefile .include <bsd.port.mk> |