diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-14 13:27:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:23:06 -0500 |
commit | 89641975bbec8bc61ebc045f307a8973a06df68d (patch) | |
tree | cad93da816ac5a2f84b97286aec2fd99d7805880 /source4 | |
parent | 1329c2eb1fd9d6c8180e694f039f07fcab59f9b0 (diff) | |
download | samba-89641975bbec8bc61ebc045f307a8973a06df68d.tar.gz samba-89641975bbec8bc61ebc045f307a8973a06df68d.tar.bz2 samba-89641975bbec8bc61ebc045f307a8973a06df68d.zip |
r8469: the extra pidl args need to be normal args, not after a --, otherwise pidl tries to compile
"--uint-enums" as a IDL file :-)
This should help the build on AIX 5.2
(This used to be commit f54e6c83e48cc2d1f03827337b68658057206898)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/script/build_idl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index 20e0b706c8..22858cb57d 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -6,7 +6,7 @@ PIDL_EXTRA_ARGS="$*" [ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1 -PIDL="$PERL -Ibuild/pidl ./build/pidl/pidl --output librpc/gen_ndr/ndr_ --parse --header --parser --server --client --dcom-proxy --com-header --swig --odl --ejs -- $PIDL_EXTRA_ARGS" +PIDL="$PERL -Ibuild/pidl ./build/pidl/pidl --output librpc/gen_ndr/ndr_ --parse --header --parser --server --client --dcom-proxy --com-header --swig --odl --ejs $PIDL_EXTRA_ARGS" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl |