repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove some unused variables uncovered by the build farm.
[Samba.git]
/
source3
/
aparser
/
build
blob
4cdf2901f80897f31dc7908754758e6d7782314b
1
#!/bin/sh
2
3
file
=
$1
4
5
if
!
igawk
-f
main.
awk
$file
;
then
6
echo
parse failed
;
7
exit
1
;
8
fi
9
10
echo
compiling vluke
11
gcc
-Wall -g -o
vluke parser.c vluke.c util.c
12
echo
done
.
13