X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=build%2Ff_repos%2FMakefile;h=b5eafff9bc5c4c857780aa4e4501f20c03d36f35;hb=24d3bc11cc36528143fe833b05f2d9cbd1641a9f;hp=06d91115daf46168c636a60dbab23d3130f7f4dc;hpb=0d222a4d86ddd5e9f99f3a35bcb123920d0cc5c3;p=fuel.git diff --git a/build/f_repos/Makefile b/build/f_repos/Makefile index 06d91115d..b5eafff9b 100644 --- a/build/f_repos/Makefile +++ b/build/f_repos/Makefile @@ -150,7 +150,7 @@ get-cache: .cacheid @if $(CACHETOOL) check $(shell cat .cacheid); then \ $(MAKE) clean && \ $(CACHETOOL) get $(shell cat .cacheid) | \ - tar xf - -C ${F_GIT_ROOT}/.git; \ + tar xf - -C ${F_GIT_DIR}; \ else \ echo "No cache item found for $(shell cat .cacheid)" ;\ exit 0;\ @@ -161,6 +161,6 @@ get-cache: .cacheid put-cache: .cacheid @if ! $(CACHETOOL) check $(shell cat .cacheid); then \ $(MAKE) clean && \ - tar cf - -C ${F_GIT_ROOT}/.git modules | \ + tar cf - -C ${F_GIT_DIR} modules | \ $(CACHETOOL) put $(shell cat .cacheid); \ fi