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/Makefile.in | |
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/Makefile.in')
-rw-r--r-- | gdb/gdbserver/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ |