# HG changeset patch # User Rob Landley # Date 1311476129 18000 # Node ID 2605803856551454c48af0f00a00256c731698f3 # Parent 9fcb35fbdbd7bb172c788d7bf88746262b0b1d99 Tweak download message when using manual build/package/alt-* setup. diff -r 9fcb35fbdbd7 -r 260580385655 sources/download_functions.sh --- a/sources/download_functions.sh Sat Jul 23 21:20:06 2011 -0500 +++ b/sources/download_functions.sh Sat Jul 23 21:55:29 2011 -0500 @@ -209,7 +209,11 @@ if is_in_list "$BASENAME" $USE_UNSTABLE then # If extracted source directory exists, don't download alt-tarball. - [ -e "$SRCTREE/alt-$BASENAME" ] && return 0 + if [ -e "$SRCTREE/alt-$BASENAME" ] + then + echo "Using $SRCTREE/$PACKAGE" + return 0 + fi # Download new one as alt-packagename.tar.ext FILENAME="$ALTFILENAME"