aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2010-06-10 04:59:52 -0400
committerJunio C Hamano <gitster@pobox.com>2010-06-11 09:05:34 -0700
commitf4c2eb8b34571e645336484d2b444261a535faea (patch)
tree1bfdc21f7ba242889e9656e299571ba910583914 /Makefile
parent2543d9b609d158f611e317738644e67cacac6b9a (diff)
downloadgit-f4c2eb8b34571e645336484d2b444261a535faea.tar.gz
git-f4c2eb8b34571e645336484d2b444261a535faea.tar.xz
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 <peff@peff.net> Tested-by: Tor Arntsen <tor@spacetec.no> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
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