summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xbin/bootstrap2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c45df8d2bae..a9216510b10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Mar 12 13:48:31 2003 Steve Huston <shuston@riverace.com>
+
+ * bin/bootstrap: Changed PAGER to be set using ${name:-value} instead
+ of test -z; HP-UX /bin/sh complained if the PAGE env var wasn't set.
+
Wed Feb 19 17:02:42 2003 Ossama Othman <ossama@uci.edu>
* configure.ac (AC_CONFIG_FILES):
diff --git a/bin/bootstrap b/bin/bootstrap
index 2d2737c4fed..a2e5f4ca8cb 100755
--- a/bin/bootstrap
+++ b/bin/bootstrap
@@ -25,7 +25,7 @@
set -e
# If paginator environment variable isn't set then use `more'.
-test -z $PAGER && PAGER=more
+PAGER=${PAGER:-more}
usage()
{