From ccea851d9c1edba7748fa9eafc325ea883517482 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sun, 24 Jul 2005 03:15:21 +0000 Subject: 21510: use && rather than -a binary test operator. --- ChangeLog | 5 +++++ Config/installfns.sh | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c57eed5a7..eb0a05328 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-07-24 Clint Adams + + * 21510: Config/installfns.sh: use && rather than -a binary + test operator. + 2005-07-23 Clint Adams * 21505, 21506: Completion/Unix/Command/_rubber: use an array for diff --git a/Config/installfns.sh b/Config/installfns.sh index 83f3cb6c1..d680b4b28 100755 --- a/Config/installfns.sh +++ b/Config/installfns.sh @@ -17,7 +17,7 @@ for file in $allfuncs; do case "$file" in */CVS/*) continue;; esac - if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then + if test x$FUNCTIONS_SUBDIRS != x && test x$FUNCTIONS_SUBDIRS != xno; then case "$file" in Completion/*/*) subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`" -- cgit 1.4.1