diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-05-13 18:49:07 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-05-13 18:49:07 +0000 |
commit | 8479203087c93bddb20526d779304c7aea844cc4 (patch) | |
tree | 6516cf3189f98bea81fc2bfc4cb82a13448be533 | |
parent | Prevent collision with getline(3) (diff) |
Prevent collision with dprintf(3)
Notes
Notes:
svn path=/head/; revision=415131
-rw-r--r-- | devel/buildtool/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/buildtool/Makefile b/devel/buildtool/Makefile index dcba8d1c7616..1c4eee593325 100644 --- a/devel/buildtool/Makefile +++ b/devel/buildtool/Makefile @@ -14,4 +14,9 @@ CONFIGURE_ARGS= -p ${PREFIX} -d ${DOCSDIR} OPTIONS_DEFINE= DOCS +post-patch: + ${REINPLACE_CMD} -e "s/dprintf/debug_printf/g" \ + ${WRKSRC}/bt_sh/output.h ${WRKSRC}/bt_sh/input.c \ + ${WRKSRC}/bt_sh/input.c ${WRKSRC}/bt_sh/output.c + .include <bsd.port.mk> |