From: Alexandru Avadanii Date: Sun, 9 Oct 2016 15:06:19 +0000 (+0200) Subject: build: Fix missing git config for applying patches X-Git-Tag: danube.1.RC1~97 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F22881%2F1;p=armband.git build: Fix missing git config for applying patches After decoupling Fuel@OPNFV's `build/config.mk`, which exports GIT_COMMITER_* info, we need to configure it in Armband too, so git can apply patches for Fuel plugins / Fuel@OPNFV itself. Fixes: ARMBAND-136 Change-Id: I9404d742e89d7a54e4763f8248f16405f4685881 Signed-off-by: Alexandru Avadanii --- diff --git a/armband-fuel-config.mk b/armband-fuel-config.mk index 63699b44..0787be2d 100644 --- a/armband-fuel-config.mk +++ b/armband-fuel-config.mk @@ -45,3 +45,7 @@ export OVS_NSH_DPDK_BRANCH := ${A_OPNFV_TAG} export VSPERF_REPO := ${ARMBAND_BASE}/upstream/vswitchperf export VSPERF_BRANCH := opnfv-armband export VSPERF_CHANGE := ${A_OPNFV_TAG} + +# for the patches applying purposes (empty git config in docker build container) +export GIT_COMMITTER_NAME?=Fuel OPNFV +export GIT_COMMITTER_EMAIL?=fuel@opnfv.org