diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-05-20 00:07:18 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-20 00:30:12 +0200 |
commit | 21aaa85608f1a98da7e6df76d1ce274076a03ef5 (patch) | |
tree | 4cac41829801006af3c9f22829f18e69b7a78640 | |
parent | ed56f35cbf53b48c32af4857a2a3f80294d67afc (diff) | |
download | buildroot-21aaa85608f1a98da7e6df76d1ce274076a03ef5.tar.gz buildroot-21aaa85608f1a98da7e6df76d1ce274076a03ef5.zip |
gdb: fix build of host-gdb 7.4
The build of host-gdb 7.4 fails due to some texinfo issue. To avoid
that, use the same trick as is used for the target variant of gdb:
tell gdb that makeinfo is missing.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gdb/gdb.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk index 678c17cfd9..c3fca40c2b 100644 --- a/package/gdb/gdb.mk +++ b/package/gdb/gdb.mk @@ -50,6 +50,9 @@ GDB_PRE_PATCH_HOOKS += GDB_XTENSA_PRE_PATCH HOST_GDB_PRE_PATCH_HOOKS += GDB_XTENSA_PRE_PATCH endif +HOST_GDB_CONF_ENV = \ + ac_cv_prog_MAKEINFO=missing + GDB_CONF_ENV = \ ac_cv_prog_MAKEINFO=missing \ ac_cv_type_uintptr_t=yes \ |