From ccdf29ffa8436d3cd5409b0d02287207716cf397 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 30 Oct 2007 08:12:09 -0500 Subject: abs: prefer csup to cvsup Signed-off-by: Dan McGee --- scripts/abs.sh.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/abs.sh.in b/scripts/abs.sh.in index 5ceb433e..ae825259 100644 --- a/scripts/abs.sh.in +++ b/scripts/abs.sh.in @@ -27,7 +27,7 @@ # E_OK : Everything worked :) # E_MISSING_PROGRAM : A program the script depends on is not installed. # E_CONFIG_ERROR : Missing/incorrect configuration. -# E_INVALID_OPTION : User has passed unknow/invalid option to script. +# E_INVALID_OPTION : User has passed unknown/invalid option to script. ## # gettext initialization @@ -135,12 +135,12 @@ elif [ ! -w "$ABSROOT" ]; then fi -if [ "$(type -p cvsup)" ]; then - CVSUP="cvsup" -elif [ "$(type -p csup)" ]; then +if [ "$(type -p csup)" ]; then CVSUP="csup" +elif [ "$(type -p cvsup)" ]; then + CVSUP="cvsup" else - error "$(gettext "Missing CVS synchronization utility. Install cvsup or csup.")" + error "$(gettext "Missing CVS synchronization utility. Install csup or cvsup.")" exit 1 # E_MISSING_PROGRAM fi -- cgit v1.2.3-24-g4f1b