# HG changeset patch # User Rob Landley # Date 1276222574 18000 # Node ID 98a4d4f1d464824c6394606dc70fb8438bbf84ff # Parent 33ad2278b2af4ca6ff0348d6a2b5eb2b34280e0d Cosmetic tweak, say "Extracting" instead of "Building" during EXTRACT_ALL. diff -r 33ad2278b2af -r 98a4d4f1d464 sources/functions.sh --- a/sources/functions.sh Wed Jun 09 11:16:17 2010 -0500 +++ b/sources/functions.sh Thu Jun 10 21:16:14 2010 -0500 @@ -404,8 +404,9 @@ PACKAGE="$1" is_in_list "$PACKAGE" $USE_UNSTABLE && PACKAGE=alt-"$PACKAGE" - echo "=== Building $PACKAGE ($ARCH_NAME $STAGE_NAME)" - set_titlebar "$ARCH_NAME $STAGE_NAME $PACKAGE Building" + [ -z "$EXTRACT_ONLY" ] && TEMP=Building || TEMP=Extracting + echo "=== $TEMP $PACKAGE ($ARCH_NAME $STAGE_NAME)" + set_titlebar "$ARCH_NAME $STAGE_NAME $PACKAGE $TEMP" # Make sure the source is already extracted and up-to-date. cd "${SRCDIR}" &&