diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2016-10-09 17:06:19 +0200 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2016-10-09 17:09:33 +0200 |
commit | 146d348fcf233c8f6500495bc77dcf4d3dbfc59a (patch) | |
tree | 6ab5de7fffca886139d9cc5bd93cab5940ba2272 | |
parent | 42f8585ebb8fffad19a89314659ab9129176c3e9 (diff) |
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 <Alexandru.Avadanii@enea.com>
-rw-r--r-- | armband-fuel-config.mk | 4 |
1 files changed, 4 insertions, 0 deletions
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 |