changeset 1107:98a4d4f1d464

Cosmetic tweak, say "Extracting" instead of "Building" during EXTRACT_ALL.
author Rob Landley <rob@landley.net>
date Thu, 10 Jun 2010 21:16:14 -0500
parents 33ad2278b2af
children a0bc889b4269
files sources/functions.sh
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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}" &&