1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00
samba-mirror/source4/script/build_idl.sh
Andrew Tridgell 30d45fc57c check for pidl.pl in path, not $HOME/pidl/
(This used to be commit 9aacdb5b8a)
2003-11-09 01:18:59 +00:00

11 lines
201 B
Bash
Executable File

#!/bin/bash
for f in librpc/idl/*.idl; do
echo Processing $f
base=`basename $f .idl`
ndr=librpc/ndr/ndr_$base
pidl.pl --output $ndr --parse --header --parser $f || exit 1
done
exit 0