aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.in
diff options
context:
space:
mode:
authorNicolas Boulenguez <nicolas@debian.org>2021-05-20 09:58:51 +0930
committerAlan Modra <amodra@gmail.com>2021-05-20 10:03:33 +0930
commitd556135f02ae050fb1fad841e427e420d98dcfd5 (patch)
tree01008c52e3270cd0adc1c845a0f7ff633015da8f /gas/Makefile.in
parent93b196f9316ca6a6de119ac40b9efb2305fc1e93 (diff)
downloadgdb-d556135f02ae050fb1fad841e427e420d98dcfd5.zip
gdb-d556135f02ae050fb1fad841e427e420d98dcfd5.tar.gz
gdb-d556135f02ae050fb1fad841e427e420d98dcfd5.tar.bz2
PR27888, fix link of gas with zlib by libtool 2.4.6
PR 27888 * Makefile.am (ZLIB): Define. (as_new_LDADD): Add it. * Makefile.in: Regenerate.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r--gas/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in
index f4fa693..f3d66b8 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -427,6 +427,7 @@ tooldir = $(exec_prefix)/$(target_alias)
# This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
# -I../zlib, unless we were configured with --with-system-zlib, in which
# case both are empty.
+ZLIB = @zlibdir@ -lz
ZLIBINC = @zlibinc@
# Automake 1.10+ disables lex and yacc output file regeneration if
@@ -783,7 +784,7 @@ GASLIBS = @OPCODES_LIB@ ../bfd/libbfd.la ../libiberty/libiberty.a
STAGESTUFF = *.@OBJEXT@ $(noinst_PROGRAMS)
as_new_SOURCES = $(GAS_CFILES)
as_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
- $(extra_objects) $(GASLIBS) $(LIBINTL) $(LIBM)
+ $(extra_objects) $(GASLIBS) $(LIBINTL) $(LIBM) $(ZLIB)
as_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
$(extra_objects) $(GASLIBS) $(LIBINTL_DEP)