From: Pedro Alves Date: Mon, 6 Sep 2010 10:56:18 +0000 (+0000) Subject: * Makefile.in (install-only): Replace $IPA_DEPFILES with X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e87073636f69339e6d867adc253f4f3d1d3c2173;p=thirdparty%2Fbinutils-gdb.git * Makefile.in (install-only): Replace $IPA_DEPFILES with "$(IPA_DEPFILES)". --- diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 90bb28088ab..ad9b2965e37 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2010-09-06 Pedro Alves + + * Makefile.in (install-only): Replace $IPA_DEPFILES with + "$(IPA_DEPFILES)". + 2010-08-11 Thomas Schwinge * linux-low.c (linux_wait_1): Correctly return the ptid of the child diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 76577cf2132..0d3bda26987 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -164,7 +164,7 @@ install: all install-only install-only: n=`echo gdbserver | sed '$(program_transform_name)'`; \ if [ x$$n = x ]; then n=gdbserver; else true; fi; \ - if [ x$IPA_DEPFILES != x ]; then \ + if [ x"$(IPA_DEPFILES)" != x ]; then \ $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \ $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \ fi; \