version 1.1, 2006/01/03 20:00:20
|
version 1.4, 2013/08/09 06:24:27
|
Line 1
|
Line 1
|
#!/usr/bin/perl |
#!/usr/bin/perl |
my $script=<<CMD; |
my $script=<<CMD; |
touch loncom/build/WARNINGS |
touch loncom/build/WARNINGS |
rm WARNINGS |
rm -f WARNINGS |
ln -s loncom/build/WARNINGS WARNINGS |
ln -s loncom/build/WARNINGS WARNINGS |
cd loncom/build;make build |
cd loncom/build;make build |
make rawinstall |
make rawinstall |
make configinstall |
make configinstall |
make updatequery |
make updatequery |
make hosts_and_domain_tab |
make hosts_and_domain_tab |
|
make removenolongerused |
make postinstall |
make postinstall |
make run_searchcat |
make run_searchcat |
make aboutVERSION |
|
CMD |
CMD |
my @commands=split(/[\n;]/,$script); |
my @commands=split(/[\n;]/,$script); |
foreach $cmd (@commands) { |
foreach $cmd (@commands) { |