summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authordogcow <dogcow@NetBSD.org>2008-09-03 09:55:23 +0000
committerdogcow <dogcow@NetBSD.org>2008-09-03 09:55:23 +0000
commitaedef3bb4f26fd42b72d8b650ba6e5158ef3aa96 (patch)
tree152c6f046e1fe3a9a4ff8a6ad08162c62708a23e /gnu/usr.bin
parentcdef44cd09afb769b38d20e0338af2effe17aea7 (diff)
eliminate the need for gettext() when building the host-only tool.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/texinfo/makedoc/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/usr.bin/texinfo/makedoc/Makefile b/gnu/usr.bin/texinfo/makedoc/Makefile
index e6c326dd429..f4399660dc8 100644
--- a/gnu/usr.bin/texinfo/makedoc/Makefile
+++ b/gnu/usr.bin/texinfo/makedoc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2008/09/02 14:46:53 christos Exp $
+# $NetBSD: Makefile,v 1.3 2008/09/03 09:55:23 dogcow Exp $
NOMAN=
MAKEDOC=
@@ -10,9 +10,6 @@ HOSTPROG= makedoc
.PATH: ${IDIST}/info
HOST_CPPFLAGS+= -I${IDIST}/info -I${IDIST}/lib -I${.CURDIR}/../common
HOST_CPPFLAGS+= -Dxstrdup=strdup -Dxmalloc=malloc -Dxfree=free
-HOST_CPPFLAGS+= -Dxexit=exit -Dxrealloc=realloc
-
-LDADD+=-lintl
-DPADD+=${LIBINTL}
+HOST_CPPFLAGS+= -Dxexit=exit -Dxrealloc=realloc -DHOSTTOOL
.include <bsd.hostprog.mk>