version 1.1, 2006/01/03 20:00:20
|
version 1.3, 2011/03/10 16:08:24
|
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 |
Line 10 make updatequery
|
Line 10 make updatequery
|
make hosts_and_domain_tab |
make hosts_and_domain_tab |
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) { |