diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-10-14 19:32:43 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-10-14 19:32:43 +0200 |
commit | 8ae8d1162d92f14a0445fc497f473fde0aee6c3c (patch) | |
tree | 50c5ab2e798f460fd1f4b32795083d8ed4958266 | |
parent | 366cec113a1c5a20b4afb671d14f02ea10b660e8 (diff) | |
download | buildroot-8ae8d1162d92f14a0445fc497f473fde0aee6c3c.tar.gz buildroot-8ae8d1162d92f14a0445fc497f473fde0aee6c3c.zip |
gdb: unbreak host/target install step
Commit 12306a81f8edc (gdb: get rid of host-texinfo dependency) tried to
append MAKEINFO=true to the host/target make install arguments, but as the
default values for these are only added when (host-)autotools-package is
evaluated (and only if empty), this effectively drops the default values and
we ended up without the 'install' target and nothing got installed.
To fix this, specify the full install arguments.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gdb/gdb.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk index 0e7abfd2a6..ccf9e4968d 100644 --- a/package/gdb/gdb.mk +++ b/package/gdb/gdb.mk @@ -39,9 +39,9 @@ HOST_GDB_DEPENDENCIES = host-expat host-ncurses # Disable building documentation GDB_MAKE_OPTS += MAKEINFO=true -GDB_INSTALL_TARGET_OPTS += MAKEINFO=true +GDB_INSTALL_TARGET_OPTS += MAKEINFO=true DESTDIR=$(TARGET_DIR) install HOST_GDB_MAKE_OPTS += MAKEINFO=true -HOST_GDB_INSTALL_OPTS += MAKEINFO=true +HOST_GDB_INSTALL_OPTS += MAKEINFO=true install # Apply the Xtensa specific patches XTENSA_CORE_NAME = $(call qstrip, $(BR2_XTENSA_CORE_NAME)) |