summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2010-06-10 08:59:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-06-10 14:56:11 (GMT)
commit19b9b0b220be08025d4db9a1c85e21637bf8fd95 (patch)
tree3059525ae87a014940d50bd06a1ef9b0d0348a43 /Makefile
parent92a75a391e66cfc278cf59741e484efd80c02176 (diff)
downloadgit-19b9b0b220be08025d4db9a1c85e21637bf8fd95.zip
git-19b9b0b220be08025d4db9a1c85e21637bf8fd95.tar.gz
git-19b9b0b220be08025d4db9a1c85e21637bf8fd95.tar.bz2
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 d5d6565..b0cecaa 100644
--- a/Makefile
+++ b/Makefile
@@ -898,6 +898,7 @@ ifeq ($(uname_S),NetBSD)
HAVE_PATHS_H = YesPlease
endif
ifeq ($(uname_S),AIX)
+ DEFAULT_PAGER = more
NO_STRCASESTR=YesPlease
NO_MEMMEM = YesPlease
NO_MKDTEMP = YesPlease