repo.or.cz
/
arla.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[arla.git]
/
tests
/
boot-strap-arla
blob
f9539eaa918640140651f6293826ec65a5382624
1
#!/bin/sh
2
# $Id$
3
if
test
"X
$FAST
"
!=
"X"
;
then
echo
"Not running
$0
"
>&
4
;
exit
0
;
fi
4
5
ARLA_RELEASE
=
${AFSROOT}
/
stacken.kth.se
/
ftp
/
pub
/
arla
/
arla-0.34.
tar
.gz
6
7
mkdir src ||
exit
1
8
mkdir obj ||
exit
1
9
10
cd
src ||
exit
1
11
gzip
-dc
$ARLA_RELEASE
|
tar
xf
-
12
cd
..
/
obj ||
exit
1
13
..
/
src
/*/
configure ||
exit
1
14
make
||
exit
1
15
cd
milko ||
exit
1
16
make
||
exit
1
17
exit
0