package/gcc: fix libgcc build for xtensa
[buildroot-gz.git] / package / openocd / 0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch
blob5ec0552dd41bb41167d90a495c8c3027bb5eb26d
1 From 3bef159779c8fd39a070ec5c8191e18ba2efa79d Mon Sep 17 00:00:00 2001
2 From: Claudio Laurita <claudio.laurita@integrazionetotale.it>
3 Date: Sun, 30 Nov 2014 18:21:58 +0100
4 Subject: [PATCH 2/2] Fix jimtcl auto configuration to force static library
5 only. jimtcl ignores a --disable-shared option if a previous --enable-shared
6 option was given. This breaks openocd compilation if shared was the preferred
7 option in buildroot project.
9 Signed-off-by: Claudio Laurita <claudio.laurita@integrazionetotale.it>
10 ---
11 jimtcl/auto.def | 8 ++------
12 1 file changed, 2 insertions(+), 6 deletions(-)
14 diff --git a/jimtcl/auto.def b/jimtcl/auto.def
15 index ddb0c1e..929ade0 100644
16 --- a/jimtcl/auto.def
17 +++ b/jimtcl/auto.def
18 @@ -181,12 +181,8 @@ if {[opt-bool references]} {
19 msg-result "Enabling references"
20 define JIM_REFERENCES
22 -if {[opt-bool shared with-jim-shared]} {
23 - msg-result "Building shared library"
24 -} else {
25 - msg-result "Building static library"
26 - define JIM_STATICLIB
28 +msg-result "Building static library"
29 +define JIM_STATICLIB
30 define JIM_INSTALL [opt-bool install-jim]
32 # Attributes of the extensions
33 --
34 2.1.3