summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2003-03-12 18:51:27 +0000
committerSteve Huston <shuston@riverace.com>2003-03-12 18:51:27 +0000
commitd23f1fcb4dce310ad7b222cdc1044db8b491eb94 (patch)
tree4b94ba3d141feac33e82d07496372175a58c6b87
parent24f18ac20b785db86e4173f09921bc32a3d85682 (diff)
downloadATCD-d23f1fcb4dce310ad7b222cdc1044db8b491eb94.tar.gz
ChangeLogTag:Wed Mar 12 13:48:31 2003 Steve Huston <shuston@riverace.com>
-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()
{