mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
30d45fc57c
(This used to be commit 9aacdb5b8a
)
11 lines
201 B
Bash
Executable File
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
|