diff options
author | Pedro Alves <palves@redhat.com> | 2010-09-06 10:43:58 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-09-06 10:43:58 +0000 |
commit | 12ac6819b6624fd197cefb1742f1ccd168a8b0fd (patch) | |
tree | a330979361ade8d35c310db5019d2098d05df0b6 /gdb/gdbserver | |
parent | fee65560ca9b0c883695a87790d37175c7eddcaf (diff) | |
download | gdb-12ac6819b6624fd197cefb1742f1ccd168a8b0fd.zip gdb-12ac6819b6624fd197cefb1742f1ccd168a8b0fd.tar.gz gdb-12ac6819b6624fd197cefb1742f1ccd168a8b0fd.tar.bz2 |
* Makefile.in (install-only): Replace $IPA_DEPFILES with
"$(IPA_DEPFILES)".
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 37f0686..f06e6bf 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2010-09-06 Pedro Alves <pedro@codesourcery.com> + + * Makefile.in (install-only): Replace $IPA_DEPFILES with + "$(IPA_DEPFILES)". + 2010-09-01 Joel Brobecker <brobecker@adacore.com> * gdbserver/lynx-low.c, gdbserver/lynx-low.h, diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index fa6c102..38e2d16 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -167,7 +167,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; \ |