RE: [PATCH] Remove git-status from list of scripts as it is builtin
From: Medve Emilian <hidden>
Date: 2016-06-15 22:43:54
Hi Shawn, That does the trick. Thanks. Cheers, Emil.
quoted hunk ↗ jump to hunk
-----Original Message----- From: git-owner@vger.kernel.org [mailto:git-owner@vger.kernel.org] On Behalf Of Shawn O. Pearce Sent: Friday, November 23, 2007 2:35 PM To: Junio C Hamano Cc: git@vger.kernel.org Subject: [PATCH] Remove git-status from list of scripts as it is builtin Now that git-status is builtin on Cygwin this compiles as git-status.exe. We cannot continue to include git-status as a Makefile target as it will never be built. Signed-off-by: Shawn O. Pearce <redacted> --- I apologize if this is a dupe; I haven't had a chance to read the list traffic to see what has been posted and what hasn't. I'll be offline for the next few days so I figured I should get this out there now, just in case anyone else might run into the same problem I did. Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)diff --git a/Makefile b/Makefile index 313f9a2..a5a40ce 100644 --- a/Makefile +++ b/Makefile@@ -233,7 +233,7 @@ SCRIPT_PERL = \ SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \ $(patsubst %.perl,%,$(SCRIPT_PERL)) \ - git-status git-instaweb + git-instaweb # ... and all the rest that could be moved out of bindir togitexecdir PROGRAMS = \ -- 1.5.3.6.1936.gc44a9 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html