diff options
author | Alan Modra <amodra@gmail.com> | 2024-06-20 21:14:24 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2024-06-20 21:15:27 +0930 |
commit | 56f39033698b22a89571b345e5133b486822df1d (patch) | |
tree | 341ee99d646d3efef302612b3ef3210be785aca0 /gdbserver | |
parent | e874cbd3879843a83e4bcc4b54cd7107387b1df6 (diff) | |
download | gdb-56f39033698b22a89571b345e5133b486822df1d.zip gdb-56f39033698b22a89571b345e5133b486822df1d.tar.gz gdb-56f39033698b22a89571b345e5133b486822df1d.tar.bz2 |
Revert "Remove LIBINTL_DEP"
This reverts commit e874cbd3879843a83e4bcc4b54cd7107387b1df6.
The patch was wrong. LIBINTL_DEP is needed with an in-tree gettext.
Diffstat (limited to 'gdbserver')
-rw-r--r-- | gdbserver/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdbserver/Makefile.in b/gdbserver/Makefile.in index 05a52f5..6148ccf 100644 --- a/gdbserver/Makefile.in +++ b/gdbserver/Makefile.in @@ -114,6 +114,7 @@ include $(GNULIB_PARENT_DIR)/gnulib/Makefile.gnulib.inc # Where is the INTL library? Typically in ../intl. INTL = @LIBINTL@ +INTL_DEPS = @LIBINTL_DEP@ INTL_CFLAGS = @INCINTL@ INCSUPPORT = \ @@ -366,7 +367,7 @@ install-html: clean-info: gdbserver$(EXEEXT): $(sort $(OBS)) ${CDEPS} $(LIBGNU) $(LIBIBERTY) \ - $(GDBSUPPORT) + $(INTL_DEPS) $(GDBSUPPORT) $(SILENCE) rm -f gdbserver$(EXEEXT) $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) \ $(CXXFLAGS) \ @@ -375,7 +376,7 @@ gdbserver$(EXEEXT): $(sort $(OBS)) ${CDEPS} $(LIBGNU) $(LIBIBERTY) \ $(GDBSERVER_LIBS) $(XM_CLIBS) $(WIN32APILIBS) $(MAYBE_LIBICONV) gdbreplay$(EXEEXT): $(sort $(GDBREPLAY_OBS)) $(LIBGNU) $(LIBIBERTY) \ - $(GDBSUPPORT) + $(INTL_DEPS) $(GDBSUPPORT) $(SILENCE) rm -f gdbreplay$(EXEEXT) $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) \ $(CXXFLAGS) \ |