Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Fix for GIT cross-compilation.
@ 2016-05-21 20:16 Mauro Condarelli
  2016-05-21 21:09 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Mauro Condarelli @ 2016-05-21 20:16 UTC (permalink / raw)
  To: buildroot

GIT configuration partially relies on system parameters retrieved
using 'uname -?' directlly at make time.
This does not mix well with cross compilation.
This patch allows to feed canned uname results directly from git.mk.

Signed-off-by: Mauro Condarelli <mc5686@mclink.it>
---
 package/git/00-Fix_uname_config.patch | 21 +++++++++++++++++++++
 package/git/git.mk                    | 10 ++++++++++
 2 files changed, 31 insertions(+)
 create mode 100644 package/git/00-Fix_uname_config.patch

diff --git a/package/git/00-Fix_uname_config.patch b/package/git/00-Fix_uname_config.patch
new file mode 100644
index 0000000..242e6cc
--- /dev/null
+++ b/package/git/00-Fix_uname_config.patch
@@ -0,0 +1,21 @@
+diff -ru git-2.6.4/config.mak.uname git-2.6.4_patched/config.mak.uname
+--- git-2.6.4/config.mak.uname	2015-12-08 23:54:24.000000000 +0100
++++ git-2.6.4_patched/config.mak.uname	2016-05-20 23:31:13.502943770 +0200
+@@ -1,11 +1,11 @@
+ # Platform specific Makefile tweaks based on uname detection
+ 
+-uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
+-uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
+-uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
+-uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
+-uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
+-uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
++uname_S := $(UNAME_S)
++uname_M := $(UNAME_M)
++uname_O := $(UNAME_O)
++uname_R := $(UNAME_R)
++uname_P := $(UNAME_P)
++uname_V := $(UNAME_V)
+ 
+ ifdef MSVC
+ 	# avoid the MingW and Cygwin configuration sections
diff --git a/package/git/git.mk b/package/git/git.mk
index db26036..db6b2b3 100644
--- a/package/git/git.mk
+++ b/package/git/git.mk
@@ -63,4 +63,14 @@ GIT_CONF_ENV += \
 	ac_cv_fread_reads_directories=yes \
 	ac_cv_snprintf_returns_bogus=yes LIBS='$(GIT_CONF_ENV_LIBS)'
 
+# git has make-time configuration based on uname; pass over specific
+# values to be used in config.mak.uname unstead of `uname -#` output
+GIT_MAKE_OPTS += \
+	UNAME_S="Linux" \
+	UNAME_M=$(BR2_ARCH) \
+	UNAME_O="GNU/Linux" \
+	UNAME_R=$(BR2_LINUX_KERNEL_VERSION) \
+	UNAME_P="unknown" \
+	UNAME_V="BuildRoot Linux $(patsubst "%",%,$(BR2_LINUX_KERNEL_VERSION))"
+
 $(eval $(autotools-package))
-- 
2.1.4

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

end of thread, other threads:[~2016-05-21 21:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-21 20:16 [Buildroot] [PATCH 1/1] Fix for GIT cross-compilation Mauro Condarelli
2016-05-21 21:09 ` Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox