diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index e1833d640d9..a08251e21b0 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2005-05-16 Nathanael Nerode + + PR ada/20270 + * Makefile.in: Make TGT_LIB behave correctly. + 2005-04-23 DJ Delorie * misc.c: Adjust warning() callers. diff --git a/gcc/ada/Makefile.in b/gcc/ada/Makefile.in index 22ef98dfbff..4b9e58c2024 100644 --- a/gcc/ada/Makefile.in +++ b/gcc/ada/Makefile.in @@ -245,7 +245,9 @@ LIBIBERTY = ../../libiberty/libiberty.a # and the system's installed libraries. LIBS = $(LIBINTL) $(LIBIBERTY) $(SYSLIBS) LIBDEPS = $(LIBINTL_DEP) $(LIBIBERTY) -TOOLS_LIBS = $(LIBGNAT) $(EXTRA_GNATTOOLS_OBJS) link.o ../../../libiberty/libiberty.a $(SYSLIBS) +# Default is no TGT_LIB; one might be passed down or something +TGT_LIB = +TOOLS_LIBS = $(LIBGNAT) $(EXTRA_GNATTOOLS_OBJS) link.o ../../../libiberty/libiberty.a $(SYSLIBS) $(TGT_LIB) # Specify the directories to be searched for header files. # Both . and srcdir are used, in that order,