summaryrefslogtreecommitdiffstats
path: root/scripts/setup
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-21 15:59:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-21 15:59:54 +0000
commit43e7d103a0aa620f5f75c4ccac2f5b6c3d3f9433 (patch)
tree4ac0457190bb29a927139d9a966ac14c88c2bb61 /scripts/setup
parentAdded Semaphore_Flush. (diff)
downloadrtems-43e7d103a0aa620f5f75c4ccac2f5b6c3d3f9433.tar.bz2
Changes from Ralf with script-19991021-0. He fixed the %files
issue and has mkbspspec in a better state. user.cfg is now gone. There are some miscellaneous changes to buildall done by Joel to clean up the build process.
Diffstat (limited to 'scripts/setup')
-rwxr-xr-xscripts/setup9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/setup b/scripts/setup
index 7477f80887..11d5712757 100755
--- a/scripts/setup
+++ b/scripts/setup
@@ -4,11 +4,16 @@ CFG=setup.cache
# RTEMS tools setup
-test -f ./CFG || echo "restoring default setup.cache" && cp ./setup.def ./$CFG
+if test ! -f ./$CFG;
+then
+ echo -n "restoring default setup.cache .."
+ cp ./setup.def ./$CFG
+ echo " done"
+fi
echo -n "loading setup from ./$CFG .."
. ./$CFG
-echo "done"
+echo " done"
echo
menu_setup()