Skip to content

Commit 9559f8f

Browse files
avargitster
authored andcommitted
Makefile: move "strip" assignment down from flags
Move the assignment of the "STRIP" variable down to where we're setting variables with the names of other programs. For consistency with those use "=" for the assignment instead of "?=". I can't imagine why this would need to be different than the rest, and 4dc0002 ("Makefile: add 'strip' target", 2006-01-12) which added it doesn't provide an explanation. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 4f14a8c commit 9559f8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,6 @@ CFLAGS = -g -O2 -Wall
512512
LDFLAGS =
513513
ALL_CFLAGS = $(CPPFLAGS) $(CFLAGS)
514514
ALL_LDFLAGS = $(LDFLAGS)
515-
STRIP ?= strip
516515

517516
# Create as necessary, replace existing, make ranlib unneeded.
518517
ARFLAGS = rcs
@@ -576,6 +575,7 @@ CURL_CONFIG = curl-config
576575
PTHREAD_LIBS = -lpthread
577576
PTHREAD_CFLAGS =
578577
GCOV = gcov
578+
STRIP = strip
579579
SPATCH = spatch
580580

581581
export TCL_PATH TCLTK_PATH

0 commit comments

Comments
 (0)