From e9741606093487055b256665bf59c10cc293439b Mon Sep 17 00:00:00 2001 From: "chess.griffin" Date: Mon, 29 Dec 2008 03:33:44 +0000 Subject: [PATCH] add tmux update fix; mention that Conrol-C will exit out of build queue processing. --- src/usr/bin/sbopkg | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/usr/bin/sbopkg b/src/usr/bin/sbopkg index 610be3c..baaecbe 100755 --- a/src/usr/bin/sbopkg +++ b/src/usr/bin/sbopkg @@ -360,6 +360,9 @@ potential updates..." >> $UPDATELIST if [ $PRGNAM = "acroread" ]; then TESTVER=$(echo $VER | sed -e 's/[_.]\([1-9]\)/\.0\1/g;s/^\([1-9]\)\.\b/0\1\./') fi + if [ $PRGNAM = "tmux" ]; then + TESTVERSION=$(echo $VERSION | sed -e 's/[_.]\([1-9]\)/\.0\1/g;s/^\([1-9]\)\.\b/0\1\./') + fi #if [[ $VERSION$NEWSRCVER > $VER || ( $VERSION$NEWSRCVER = $VER && $NEWBUILD > $BUILD ) ]]; then if [[ $TESTVERSION$TESTNEWSRCVER > $TESTVER || ( $TESTVERSION$TESTNEWSRCVER = $TESTVER && $NEWBUILD > $BUILD ) ]]; then echo $NAME: >> $UPDATELIST @@ -1303,7 +1306,8 @@ fi if [ "$DIAG" = 1 ]; then dialog --title "Install Package(s)" --yes-label "Build" \ --no-label "Build and Install" --yesno "Would you like to build the \ -package(s) only, or build and install the package(s)?" 8 50 +package(s) only, or build and install the package(s)? (Press \ +Control-C to exit)." 8 50 if [ $? = 1 ]; then INSTALLPKGS=1 fi