summaryrefslogtreecommitdiff
path: root/gdb/data-directory/Makefile.in
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2010-11-19 23:36:28 +0000
committerKeith Seitz <keiths@redhat.com>2010-11-19 23:36:28 +0000
commit9616aab5db4d77f873cf23e2cbc3202aa70b13a9 (patch)
treeb2d5292c78c3ecb26124dedea24c9a019d0631c4 /gdb/data-directory/Makefile.in
parentc4428a8156c05d6d4fba4b320b1d189e3ee2f51b (diff)
downloadgdb-9616aab5db4d77f873cf23e2cbc3202aa70b13a9.tar.gz
* data-directory/Makefile.in (SYSCALLS_INSTALL_DIR):
Remove extraneous '/' after $(DESTDIR). (PYTHON_INSTALL_DIR): Likewise.
Diffstat (limited to 'gdb/data-directory/Makefile.in')
-rw-r--r--gdb/data-directory/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/data-directory/Makefile.in b/gdb/data-directory/Makefile.in
index 84c618c4a5e..30674754f2f 100644
--- a/gdb/data-directory/Makefile.in
+++ b/gdb/data-directory/Makefile.in
@@ -41,7 +41,7 @@ INSTALL_DIR = $(SHELL) $(srcdir)/../../mkinstalldirs
GDB_DATADIR = @GDB_DATADIR@
SYSCALLS_DIR = syscalls
-SYSCALLS_INSTALL_DIR = $(DESTDIR)/$(GDB_DATADIR)/$(SYSCALLS_DIR)
+SYSCALLS_INSTALL_DIR = $(DESTDIR)$(GDB_DATADIR)/$(SYSCALLS_DIR)
SYSCALLS_FILES = \
gdb-syscalls.dtd \
ppc-linux.xml ppc64-linux.xml \
@@ -49,7 +49,7 @@ SYSCALLS_FILES = \
sparc-linux.xml sparc64-linux.xml
PYTHON_DIR = python
-PYTHON_INSTALL_DIR = $(DESTDIR)/$(GDB_DATADIR)/$(PYTHON_DIR)
+PYTHON_INSTALL_DIR = $(DESTDIR)$(GDB_DATADIR)/$(PYTHON_DIR)
PYTHON_FILES = \
gdb/__init__.py \
gdb/types.py \