On 01/06/2016 06:25, Fam Zheng wrote: > +CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$) > +# Makes the definition constant after the first expansion > +DOCKER_SRC_COPY = $(eval DOCKER_SRC_COPY := > /tmp/docker-src.$(CUR_TIME))$(DOCKER_SRC_COPY) > + > +$(DOCKER_SRC_COPY): > + @mkdir $@ > + $(call make-archive-maybe, $(SRC_PATH), $@/qemu.tgz) > + $(call make-archive-maybe, $(SRC_PATH)/dtc, $@/dtc.tgz) > + $(call make-archive-maybe, $(SRC_PATH)/pixman, $@/pixman.tgz) > + $(call quiet-command, cp $(SRC_PATH)/tests/docker/run $@/run, \ > + " COPY RUNNER") > + > +docker-qemu-src: $(DOCKER_SRC_COPY)
Do not use /tmp, instead place it under the current directory. You can do the change and send a pull request! :) Paolo