From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38086) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWeKm-0004OG-Vw for qemu-devel@nongnu.org; Mon, 08 Aug 2016 02:46:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bWeKi-0000AG-1y for qemu-devel@nongnu.org; Mon, 08 Aug 2016 02:46:47 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48892) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWeKh-0000AC-SU for qemu-devel@nongnu.org; Mon, 08 Aug 2016 02:46:43 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 745B1C03BD61 for ; Mon, 8 Aug 2016 06:46:43 +0000 (UTC) From: Fam Zheng Date: Mon, 8 Aug 2016 14:46:41 +0800 Message-Id: <1470638801-22060-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [PATCH] docker: Prefix src copy dir with "." List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com So they don't show up in "ls" command, and don't clutter editor's quick open plugins easily (such as CtrlP of VIM). Signed-off-by: Fam Zheng --- tests/docker/Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include index 4f4707d..de57320 100644 --- a/tests/docker/Makefile.include +++ b/tests/docker/Makefile.include @@ -28,7 +28,7 @@ make-archive-maybe = $(if $(wildcard $1/*), \ " ARCHIVE $(notdir $2)")) CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$) -DOCKER_SRC_COPY := docker-src.$(CUR_TIME) +DOCKER_SRC_COPY := .docker-src.$(CUR_TIME) $(DOCKER_SRC_COPY): @mkdir $@ -- 2.7.4