From 9d620ad1c2c06d0092e1979c16a16934e569e222 Mon Sep 17 00:00:00 2001 From: David Given Date: Thu, 2 Jun 2016 12:35:38 +0200 Subject: [PATCH] The archiver is called aal now. --HG-- branch : default-branch --- distr/mkdist | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/distr/mkdist b/distr/mkdist index 8366d69fb..1e302dc19 100755 --- a/distr/mkdist +++ b/distr/mkdist @@ -6,7 +6,7 @@ destdir= srcdir=`pwd` -arch=/usr/local/bin/arch +aal=/usr/local/bin/aal delete=no copy="ln" @@ -36,8 +36,8 @@ while [ "$1" != "" ]; do copy="ln -s" ;; - -a|--arch) - arch="$2" + -a|--aal) + aal="$2" shift ;; @@ -49,7 +49,7 @@ while [ "$1" != "" ]; do echo " -x --delete Erase the destination directory first." echo " -c --copy Make physical copies of the files. (default: hardlink)" echo " -S --symlink Make symbolic links instead of copying or hardlinking." - echo " -a --arch Where the ACK 'arch' tool is." + echo " -a --aal Where the ACK 'aal' tool is." echo " -h --help Display this message." exit 0 ;; @@ -110,7 +110,7 @@ process_dir() { elif [ "$i" = "$archivename" ]; then # Build the named archive. - $arch cDr `cat LIST` + $aal cDr `cat LIST` addfile $path/$archivename else echo "Don't know what to do with $i, listed in $PWD/.distr." @@ -123,12 +123,10 @@ process_dir() { # --- Main program ---------------------------------------------------------- -# Test to make sure that $arch points to the right thing. +# Test to make sure that $aal points to the right thing. -if !(strings $arch | grep archiver > /dev/null); then - echo "$arch does not seem to point at the ACK archiver tool." - echo "(Don't confuse this with the Linux tool for displaying your" - echo "architecture.)" +if !(strings $aal | grep archiver > /dev/null); then + echo "$aal does not seem to point at the ACK archiver tool." echo "" echo "Press RETURN to go ahead anyway, or CTRL+C to abort." read ignored -- 2.34.1