1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00
samba-mirror/source/script/build_idl.sh

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