diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-22 07:58:44 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-22 07:58:44 +0000 |
commit | 19ac4b08f0d03f6141cdebb65887e31b32ec3412 (patch) | |
tree | 46e505012ebd7592e2f4acb226acf5e3fe2b1be5 /binutils/Makefile.am | |
parent | 16a02269fc8d2cf0f25b40d16a70087bb315a653 (diff) | |
download | gdb-19ac4b08f0d03f6141cdebb65887e31b32ec3412.zip gdb-19ac4b08f0d03f6141cdebb65887e31b32ec3412.tar.gz gdb-19ac4b08f0d03f6141cdebb65887e31b32ec3412.tar.bz2 |
* Makefile.am (INCLUDES): Search intl dirs for headers; define
LOCALEDIR.
* addr2line.c (main): Call setlocale, bindtextdomain, textdomain.
* ar.c (main): Likewise.
* coffdump.c (main): Likewise.
* dlltool.c (main): Likewise.
* nlmconv.c (main): Likewise.
* nm.c (main): Likewise.
* objcopy.c (main): Likewise.
* objdump.c (main): Likewise.
* size.c (main): Likewise.
* srconv.c (main): Likewise.
* strings.c (main): Likewise.
* sysdump.c (main): Likewise.
* windres.c (main): Likewise.
Diffstat (limited to 'binutils/Makefile.am')
-rw-r--r-- | binutils/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/binutils/Makefile.am b/binutils/Makefile.am index b0396b6..8be4f7b 100644 --- a/binutils/Makefile.am +++ b/binutils/Makefile.am @@ -1,5 +1,8 @@ ## Process this file with automake to generate Makefile.in +## FIXME: Work around apparent bug in automake. +INTLLIBS = @INTLLIBS@ + AUTOMAKE_OPTIONS = cygnus dejagnu SUBDIRS = po @@ -64,7 +67,7 @@ INCDIR = $(BASEDIR)/include DEP = mkdep -INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @HDEFINES@ +INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @HDEFINES@ -I$(srcdir)/../intl -I../intl -DLOCALEDIR="\"$(prefix)/share/locale\"" HFILES = arsup.h bucomm.h budbg.h coffgrok.h debug.h nlmconv.h dlltool.h \ windres.h |