aboutsummaryrefslogtreecommitdiff
path: root/cbt
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-03-06 18:24:21 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2016-03-06 18:24:21 -0500
commit9926470f4064ff08a40e18409851536f52f4ade3 (patch)
tree12bd8995330aafeb19be85cb72faf7fcf9d8fa44 /cbt
parent890b7c8e3298b0c68cdb49d04547ae9bf3ebefd7 (diff)
downloadcbt-9926470f4064ff08a40e18409851536f52f4ade3.tar.gz
cbt-9926470f4064ff08a40e18409851536f52f4ade3.tar.bz2
cbt-9926470f4064ff08a40e18409851536f52f4ade3.zip
simplifying some messages in shell scripts
Diffstat (limited to 'cbt')
-rwxr-xr-xcbt8
1 files changed, 4 insertions, 4 deletions
diff --git a/cbt b/cbt
index 8cc10f1..bbe3ade 100755
--- a/cbt
+++ b/cbt
@@ -117,7 +117,7 @@ SCALAC="java -Xmx256M -Xms32M\
-feature"
stage1 () {
- log "Checking for source changes in NailgunLauncher and maybe compiling." $*
+ log "Checking for changes in cbt/nailgun_launcher" $*
NAILGUN_INDICATOR=$NAILGUN$TARGET/cbt/NailgunLauncher.class
changed=0
for file in `ls $NAILGUN/*.java`; do
@@ -126,7 +126,7 @@ stage1 () {
compiles=0
if [ $changed -eq 1 ]; then
#rm $NAILGUN$TARGET/cbt/*.class 2>/dev/null
- echo "Recompiling NailgunLauncher. Detected source changes." 1>&2
+ echo "Compiling cbt/nailgun_launcher" 1>&2
javac -Xlint:deprecation -d $NAILGUN$TARGET `ls $NAILGUN*.java`
compiles=$?
if [ $compiles -ne 0 ]; then exit 1; fi
@@ -138,7 +138,7 @@ stage1 () {
fi
fi
- log "Checking for source changes in Stage1 and maybe compiling." $*
+ log "Checking for changes in cbt/stage1" $*
STAGE1_INDICATOR=$STAGE1$TARGET/cbt/Stage1.class
changed2=0
for file in `ls $STAGE1*.scala`; do
@@ -147,7 +147,7 @@ stage1 () {
compiles2=0
if [ $changed2 -eq 1 ]; then
- echo "Recompiling Stage1. Detected source changes." 1>&2
+ echo "Compiling cbt/stage1" 1>&2
rm $STAGE1$TARGET/cbt/*.class 2>/dev/null
$SCALAC -cp $NAILGUN$TARGET -d $STAGE1$TARGET `ls $STAGE1/*.scala`
compiles2=$?