All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] jimtcl: update config.guess / config.sub
@ 2017-11-06 14:17 Peter Korsgaard
  2017-11-06 14:17 ` [Buildroot] [PATCH 2/2] usb_modeswitch: " Peter Korsgaard
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-11-06 14:17 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/284/284876bd649cab26e5ecd696c03c71c077ea7411/

The build system doesn't use autotools, but does use an old version of
gnuconfig which doesn't know all the architectures supported by Buildroot,
so update config.guess / config.sub like we do in pkg-autotools.mk

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/jimtcl/jimtcl.mk | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/package/jimtcl/jimtcl.mk b/package/jimtcl/jimtcl.mk
index 313970d94a..68c8a914db 100644
--- a/package/jimtcl/jimtcl.mk
+++ b/package/jimtcl/jimtcl.mk
@@ -38,6 +38,12 @@ define JIMTCL_INSTALL_LIB
 endef
 endif
 
+# build system doesn't use autotools, but does use an old version of
+# gnuconfig which doesn't know all the architectures supported by
+# Buildroot, so update config.guess / config.sub like we do in
+# pkg-autotools.mk
+JIMTCL_POST_PATCH_HOOKS += UPDATE_CONFIG_HOOK
+
 define JIMTCL_CONFIGURE_CMDS
 	(cd $(@D); \
 		$(TARGET_CONFIGURE_OPTS) CCACHE=none \
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/2] usb_modeswitch: update config.guess / config.sub
  2017-11-06 14:17 [Buildroot] [PATCH 1/2] jimtcl: update config.guess / config.sub Peter Korsgaard
@ 2017-11-06 14:17 ` Peter Korsgaard
  2017-11-08 12:35   ` Peter Korsgaard
  2017-11-26 21:14   ` Peter Korsgaard
  2017-11-08 12:34 ` [Buildroot] [PATCH 1/2] jimtcl: " Peter Korsgaard
  2017-11-26 21:14 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-11-06 14:17 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/fbe/fbe21bd173e6566dd93dddd58d4a848de8a3465e/

The build system of the embedded jimtcl copy doesn't use autotools, but does
use an old version of gnuconfig which doesn't know all the architectures
supported by Buildroot, so update config.guess / config.sub like we do in
pkg-autotools.mk

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/usb_modeswitch/usb_modeswitch.mk | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/package/usb_modeswitch/usb_modeswitch.mk b/package/usb_modeswitch/usb_modeswitch.mk
index ea08de256b..c67d4cd583 100644
--- a/package/usb_modeswitch/usb_modeswitch.mk
+++ b/package/usb_modeswitch/usb_modeswitch.mk
@@ -20,6 +20,12 @@ USB_MODESWITCH_BUILD_TARGETS = script
 USB_MODESWITCH_INSTALL_TARGETS = install-script
 endif
 
+# build system of embedded jimtcl doesn't use autotools, but does use
+# an old version of gnuconfig which doesn't know all the architectures
+# supported by Buildroot, so update config.guess / config.sub like we
+# do in pkg-autotools.mk
+USB_MODESWITCH_POST_PATCH_HOOKS += UPDATE_CONFIG_HOOK
+
 define USB_MODESWITCH_BUILD_CMDS
 	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
 		CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE -Wall -I." \
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 1/2] jimtcl: update config.guess / config.sub
  2017-11-06 14:17 [Buildroot] [PATCH 1/2] jimtcl: update config.guess / config.sub Peter Korsgaard
  2017-11-06 14:17 ` [Buildroot] [PATCH 2/2] usb_modeswitch: " Peter Korsgaard
@ 2017-11-08 12:34 ` Peter Korsgaard
  2017-11-26 21:14 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-11-08 12:34 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Fixes:
 > http://autobuild.buildroot.net/results/284/284876bd649cab26e5ecd696c03c71c077ea7411/

 > The build system doesn't use autotools, but does use an old version of
 > gnuconfig which doesn't know all the architectures supported by Buildroot,
 > so update config.guess / config.sub like we do in pkg-autotools.mk

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/2] usb_modeswitch: update config.guess / config.sub
  2017-11-06 14:17 ` [Buildroot] [PATCH 2/2] usb_modeswitch: " Peter Korsgaard
@ 2017-11-08 12:35   ` Peter Korsgaard
  2017-11-26 21:14   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-11-08 12:35 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Fixes:
 > http://autobuild.buildroot.net/results/fbe/fbe21bd173e6566dd93dddd58d4a848de8a3465e/

 > The build system of the embedded jimtcl copy doesn't use autotools, but does
 > use an old version of gnuconfig which doesn't know all the architectures
 > supported by Buildroot, so update config.guess / config.sub like we do in
 > pkg-autotools.mk

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 1/2] jimtcl: update config.guess / config.sub
  2017-11-06 14:17 [Buildroot] [PATCH 1/2] jimtcl: update config.guess / config.sub Peter Korsgaard
  2017-11-06 14:17 ` [Buildroot] [PATCH 2/2] usb_modeswitch: " Peter Korsgaard
  2017-11-08 12:34 ` [Buildroot] [PATCH 1/2] jimtcl: " Peter Korsgaard
@ 2017-11-26 21:14 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-11-26 21:14 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Fixes:
 > http://autobuild.buildroot.net/results/284/284876bd649cab26e5ecd696c03c71c077ea7411/

 > The build system doesn't use autotools, but does use an old version of
 > gnuconfig which doesn't know all the architectures supported by Buildroot,
 > so update config.guess / config.sub like we do in pkg-autotools.mk

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed to 2017.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/2] usb_modeswitch: update config.guess / config.sub
  2017-11-06 14:17 ` [Buildroot] [PATCH 2/2] usb_modeswitch: " Peter Korsgaard
  2017-11-08 12:35   ` Peter Korsgaard
@ 2017-11-26 21:14   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-11-26 21:14 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Fixes:
 > http://autobuild.buildroot.net/results/fbe/fbe21bd173e6566dd93dddd58d4a848de8a3465e/

 > The build system of the embedded jimtcl copy doesn't use autotools, but does
 > use an old version of gnuconfig which doesn't know all the architectures
 > supported by Buildroot, so update config.guess / config.sub like we do in
 > pkg-autotools.mk

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed to 2017.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-11-26 21:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-06 14:17 [Buildroot] [PATCH 1/2] jimtcl: update config.guess / config.sub Peter Korsgaard
2017-11-06 14:17 ` [Buildroot] [PATCH 2/2] usb_modeswitch: " Peter Korsgaard
2017-11-08 12:35   ` Peter Korsgaard
2017-11-26 21:14   ` Peter Korsgaard
2017-11-08 12:34 ` [Buildroot] [PATCH 1/2] jimtcl: " Peter Korsgaard
2017-11-26 21:14 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.