From mboxrd@z Thu Jan 1 00:00:00 1970 From: Felipe Contreras Subject: [PATCH v5 01/36] build: generate and clean test scripts Date: Sun, 9 Jun 2013 14:24:15 -0500 Message-ID: <1370805890-3453-2-git-send-email-felipe.contreras@gmail.com> References: <1370805890-3453-1-git-send-email-felipe.contreras@gmail.com> Cc: Junio C Hamano , Ramkumar Ramachandra , Jonathan Nieder , Martin von Zweigbergk , Felipe Contreras To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sun Jun 09 21:26:52 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UllGN-00037A-EO for gcvg-git-2@plane.gmane.org; Sun, 09 Jun 2013 21:26:51 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752109Ab3FIT0r (ORCPT ); Sun, 9 Jun 2013 15:26:47 -0400 Received: from mail-ob0-f173.google.com ([209.85.214.173]:46361 "EHLO mail-ob0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751562Ab3FIT0q (ORCPT ); Sun, 9 Jun 2013 15:26:46 -0400 Received: by mail-ob0-f173.google.com with SMTP id wc20so8924358obb.4 for ; Sun, 09 Jun 2013 12:26:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=aGbM4a02Wfq8ZqzzBi3abudgT4BRLqQgKW6t36Dnbp0=; b=rVZ4amDbTtvjAGBp8Y1IGE3uJsMfGD+dcTOfGkhafaunJAFw531lZczZDNfy2cBRKR ZKOag5Y3QeX7G/R+IU1WGrClK6oOBkiTqjvgWrYTKkEkwAZRpcPXAE61OfIZSP0Y5jhz dmcZ5ytOoV7YL0Hh0RhmLojKFlTMCtFi+ctD4i9NSJhsJSbuUbCgPJMuUitky5pZA2mS fu+DfMGiMaaWCSRaj/sRJAqUkUetQP4vLl3qGRB80zkUFDkFDebwhYaDTrfyCuoJ20Li 5bZnob8hCoql9Mgr8qCJUBAqnAHwP9TUJW73a39rNe6ZOQ4dQ0OkSmmpO1sgVX5YHTgk FWTA== X-Received: by 10.60.149.137 with SMTP id ua9mr5745135oeb.83.1370806006088; Sun, 09 Jun 2013 12:26:46 -0700 (PDT) Received: from localhost (187-163-100-70.static.axtel.net. [187.163.100.70]) by mx.google.com with ESMTPSA id d5sm16301711oex.0.2013.06.09.12.26.44 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 09 Jun 2013 12:26:45 -0700 (PDT) X-Mailer: git-send-email 1.8.3.698.g079b096 In-Reply-To: <1370805890-3453-1-git-send-email-felipe.contreras@gmail.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Commit 416fda6 (build: do not install git-remote-testpy) made it so git-remote-testpy is not only not installed, but also not generated by default, let's make sure tests scripts (NO_INSTALL) are generated as ell. Comments-by: Junio C Hamano Signed-off-by: Felipe Contreras --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 03524d0..51c812d 100644 --- a/Makefile +++ b/Makefile @@ -2232,6 +2232,7 @@ endif test_bindir_programs := $(patsubst %,bin-wrappers/%,$(BINDIR_PROGRAMS_NEED_X) $(BINDIR_PROGRAMS_NO_X) $(TEST_PROGRAMS_NEED_X)) +all:: $(NO_INSTALL) all:: $(TEST_PROGRAMS) $(test_bindir_programs) bin-wrappers/%: wrap-for-bin.sh @@ -2482,7 +2483,7 @@ clean: profile-clean coverage-clean $(RM) *.o *.res block-sha1/*.o ppc/*.o compat/*.o compat/*/*.o xdiff/*.o vcs-svn/*.o \ builtin/*.o $(LIB_FILE) $(XDIFF_LIB) $(VCSSVN_LIB) $(RM) $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git$X - $(RM) $(TEST_PROGRAMS) + $(RM) $(TEST_PROGRAMS) $(NO_INSTALL) $(RM) -r bin-wrappers $(dep_dirs) $(RM) -r po/build/ $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h $(ETAGS_TARGET) tags cscope* -- 1.8.3.698.g079b096