From be14ade55e5f208324e22921b385b4410b33b438 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 12 Nov 2002 17:51:38 +0000 Subject: [PATCH] * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq linker. --- ChangeLog | 6 ++++++ src/Makefile.am | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8a7c064..7ca032a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-11-12 Albert Chin-A-Young + + * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the + duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq + linker. + 2002-11-12 Akim Demaille * Makefile.maint: Sync with Autoconf: diff --git a/src/Makefile.am b/src/Makefile.am index 78e7a42..9dbad8b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -26,7 +26,7 @@ AM_YFLAGS = "-dv" INCLUDES = -I$(top_builddir) \ -I$(top_srcdir)/lib -LDADD = $(INTLLIBS) ../lib/libbison.a +LDADD = ../lib/libbison.a $(LIBINTL) bin_PROGRAMS = bison -- 2.7.4