Skip to content

Commit 220adb1

Browse files
ramsay-jonesgitster
authored andcommitted
config.mak.uname: remove unused uname_P variable
The uname_P make variable was added in commit e15f545 ("Makefile tweaks: Solaris 9+ dont need iconv / move up uname variables", 2006-02-20), but it seems to never have been used (even in that original commit). The man page for 'uname' notes that the '-p' processor option is non-portable (the 'uname_M' variable is used by the Makefile for that purpose). Remove the unused 'uname_P' make variable. Signed-off-by: Ramsay Jones <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f78e2dd commit 220adb1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

config.mak.uname

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
88
uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
99
uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
1010
uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
11-
uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
1211
uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
1312

1413
ifneq ($(findstring MINGW,$(uname_S)),)

0 commit comments

Comments
 (0)