Update of /cvsroot/pclasses/pclasses2/toc/sbin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17094/toc/sbin
Modified Files:
toc_core.sh
Log Message:
Mass commit: lots of -l/-L linker changes/fixes.
Index: toc_core.sh
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/toc/sbin/toc_core.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- toc_core.sh 24 Dec 2004 11:41:08 -0000 1.3
+++ toc_core.sh 29 Dec 2004 20:11:22 -0000 1.4
@@ -667,12 +667,13 @@
echo ${TOC_EMOTICON_ERROR}
return $err
}
- echo -n "$ofile ... "
+ echo -en "\t\t\t$ofile ... "
fstate="created"
test -f "$ofile" && fstate="updated"
toc_replace_file "$ofile" "$tmpfile" || fstate="up to date"
- echo "$fstate"
+ echo -en "\r$fstate"
+ echo
return 0
}
} # end toc_atfilter_file
@@ -724,7 +725,7 @@
# which need to be @-parsed
toc_boldecho "==== Creating configuration-dependent files..."
{
- toc_test_require toc_make | toc_internal_format_endconfigure
+ toc_test_require toc_make # | toc_internal_format_endconfigure
# toc_test_require toc_config_h | toc_internal_format_endconfigure
}
local clean="$(ls .toc.* 2> /dev/null)"
|