From d3501a40605e680107fcf5a175a38a9242353d54 Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 26 Feb 2002 18:14:40 +0000 Subject: [PATCH] Add gettext to tools. For now this is a maintainer-tool only; none of the NetBSD build needs to run msgfmt as of yet. (However, its presence is needed to make the mknative part of src/tools/toolchain produce the same output as a truly "native" GNU configury of the toolchain.) --- tools/Makefile | 4 ++-- tools/gettext/Makefile | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 tools/gettext/Makefile diff --git a/tools/Makefile b/tools/Makefile index 42858e3d8693..d012f4c619f0 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2002/02/23 21:32:27 gmcgarry Exp $ +# $NetBSD: Makefile,v 1.38 2002/02/26 18:15:59 tv Exp $ # XXX Note: NO_DBSYM is a stopgap temporary variable for use # with the development of non-NetBSD hosting support. This will go away. @@ -25,7 +25,7 @@ SUBDIR= host-mkdep .WAIT compat .WAIT \ makefs menuc mklocale msgc pax pwd_mkdb zic .if ${MKMAINTAINERTOOLS:Uno} != "no" -SUBDIR+= autoconf +SUBDIR+= autoconf gettext .endif .if ${MACHINE} == sparc || ${MACHINE} == sparc64 diff --git a/tools/gettext/Makefile b/tools/gettext/Makefile new file mode 100644 index 000000000000..49a6ee305e9f --- /dev/null +++ b/tools/gettext/Makefile @@ -0,0 +1,10 @@ +# $NetBSD: Makefile,v 1.1 2002/02/26 18:14:40 tv Exp $ + +.include + +MODULE= gettext + +CONFIGURE_ARGS= --program-transform-name="s,^,nb," +MAKE_ARGS= MAKEINFO=${MAKEINFO:Q} + +.include "${.CURDIR}/../Makefile.gnuhost"