From e23d0d7dd25dcd7cfcee171a2ffd3348b75afa3e Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Tue, 13 Sep 2011 23:57:30 +0200 Subject: toolchain/gdb: fixup version strings The gdb tarballs have been re-released after a GPL compliance issue was found: http://sourceware.org/ml/gdb/2011-09/msg00030.html So all versions were re-packaged. In the process, an 'a' was appended to the version strings, and unlike the binutils people, the gdb folks are not inclined in providing legacy symlinks: http://sourceware.org/ml/gdb/2011-09/msg00036.html So, this patch fixes the issue by renaming version strings. It is to be noted that, although the versions got bumped to include an 'a' at the end, the directory contained in the tarball is still named after the version string without the 'a'. For example: - old version : 6.6 - new version : 6.6a - tarball name : gdb-6.6a.tar.bz2 - directory name : gdb-6.6/ In fact, it does not pose any problem for buildroot, as the extract process explicitly mkdirs the directory to extract into, *and* strips the first level of the tree extracted from the tarball. [Peter: fixup patch to apply to head, don't rename config symbols] Signed-off-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- .../gdb/6.8a/600-fix-compile-flag-mismatch.patch | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 toolchain/gdb/6.8a/600-fix-compile-flag-mismatch.patch (limited to 'toolchain/gdb/6.8a/600-fix-compile-flag-mismatch.patch') diff --git a/toolchain/gdb/6.8a/600-fix-compile-flag-mismatch.patch b/toolchain/gdb/6.8a/600-fix-compile-flag-mismatch.patch new file mode 100644 index 000000000..13b72bb96 --- /dev/null +++ b/toolchain/gdb/6.8a/600-fix-compile-flag-mismatch.patch @@ -0,0 +1,31 @@ +--- a/gdb/gdbserver/configure ++++ b/gdb/gdbserver/configure +@@ -1239,7 +1239,7 @@ + ac_cache_corrupted=: ;; + ,);; + *) +- if test "x$ac_old_val" != "x$ac_new_val"; then ++ if test "`echo x$ac_old_val`" != "`echo x$ac_new_val`"; then + { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 + echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +--- a/gdb/configure ++++ b/gdb/configure +@@ -272,7 +272,7 @@ + PACKAGE_BUGREPORT= + + ac_unique_file="main.c" +-ac_subdirs_all="$ac_subdirs_all doc testsuite" ++ac_subdirs_all="$ac_subdirs_all doc" + # Factoring default headers for most tests. + ac_includes_default="\ + #include +@@ -3077,7 +3077,7 @@ + + + +-subdirs="$subdirs doc testsuite" ++subdirs="$subdirs doc" + + + # Provide defaults for some variables set by the per-host and per-target -- cgit v1.2.3