From: Jeff King Date: Thu, 10 Jun 2010 08:59:52 +0000 (-0400) Subject: Makefile: default pager on AIX to "more" X-Git-Tag: v1.7.2-rc0~3^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f4c2eb8b34571e645336484d2b444261a535faea;p=git.git Makefile: default pager on AIX to "more" AIX doesn't ship with "less" by default, and their "more" is more featureful than average, so the latter is a more sensible choice. People who really want less can set the compile-time option themselves, or users can set $PAGER. Signed-off-by: Jeff King Tested-by: Tor Arntsen Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 61ad6688a..ed4c733c6 100644 --- a/Makefile +++ b/Makefile @@ -886,6 +886,7 @@ ifeq ($(uname_S),NetBSD) NO_MKSTEMPS = YesPlease endif ifeq ($(uname_S),AIX) + DEFAULT_PAGER = more NO_STRCASESTR=YesPlease NO_MEMMEM = YesPlease NO_MKDTEMP = YesPlease