summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-20 15:30:59 +0000
committerfukachan <fukachan>2001-01-20 15:30:59 +0000
commit00d2dfff5921bb758def6cbdf493a84a90db9f58 (patch)
tree0f45e6476f656a6f432563df4a21b4a0e6adee52
parentb3275d30f721e13812703897bde775cebfc80541 (diff)
downloadfml8-00d2dfff5921bb758def6cbdf493a84a90db9f58.tar.gz
fml8-00d2dfff5921bb758def6cbdf493a84a90db9f58.tar.bz2
fml8-00d2dfff5921bb758def6cbdf493a84a90db9f58.zip
clean up messages
-rwxr-xr-xINSTALL.sh25
1 files changed, 15 insertions, 10 deletions
diff --git a/INSTALL.sh b/INSTALL.sh
index bfe69f47..56a2de75 100755
--- a/INSTALL.sh
+++ b/INSTALL.sh
@@ -50,30 +50,35 @@ if [ ! -f $config_dir/main.cf ];then
fml/etc/main.cf > $config_dir/main.cf
fi
-cp fml/etc/default_config.cf $config_dir/defaults/$version
+echo update $config_dir/defaults/$version/
+cp fml/etc/default_config.cf $config_dir/defaults/$version/
-echo install libraries to $lib_dir/$version/
-cp -pr fml/lib/* $lib_dir/$version
-cp -pr cpan/lib/* $lib_dir/$version
+echo update $lib_dir/$version/
+cp -pr fml/lib/* $lib_dir/$version/
+cp -pr cpan/lib/* $lib_dir/$version/
-echo install executables to $libexec_dir/$version/
-cp -pr fml/libexec/* $libexec_dir/$version
+echo update $libexec_dir/$version/
+cp -pr fml/libexec/* $libexec_dir/$version/
if [ ! -f $libexec_dir/fmlwrapper ];then
+ echo install libexec/fmlwrapper
cp -pr fml/libexec/fmlwrapper $libexec_dir/
+
+ echo install libexec/Standalone.pm
cp -pr fml/libexec/Standalone.pm $libexec_dir/
+
(
cd $libexec_dir/
+ echo -n " link fmlwrapper to: "
for x in fml.pl distribute command fmlserv mead
do
- rm $x
- echo link $x
- ln -s fmlwrapper $x
+ rm -f $x
+ ln -s fmlwrapper $x && echo -n "$x "
done
+ echo ""
)
fi
-
exit 0