r148: Ensure we do not dereference a null pointer when we return the user
[Samba/gebeck_regimport.git] / source3 / aparser / build
blob4cdf2901f80897f31dc7908754758e6d7782314b
1 #!/bin/sh
3 file=$1
5 if ! igawk -f main.awk $file; then
6 echo parse failed;
7 exit 1;
8 fi
10 echo compiling vluke
11 gcc -Wall -g -o vluke parser.c vluke.c util.c
12 echo done.