s3-build: remove --samba3-ndr-client from build_idl.sh script.
authorGünther Deschner <gd@samba.org>
Wed, 2 Feb 2011 17:53:54 +0000 (18:53 +0100)
committerGünther Deschner <gd@samba.org>
Wed, 2 Feb 2011 19:53:15 +0000 (20:53 +0100)
Guenther

librpc/build_idl.sh
source3/script/build_idl.sh

index c335557d870deb1a2e60318a9a4acfa51135d069..afab91044bebd535fe29b90bdfc34d9f3ac4044c 100755 (executable)
@@ -7,7 +7,7 @@ else
        FULL=0
 fi
 
-ARGS="--outputdir $PIDL_OUTPUTDIR --header --ndr-parser --samba3-ndr-server --samba3-ndr-client --server --client --python --dcom-proxy --com-header $PIDL_ARGS --"
+ARGS="--outputdir $PIDL_OUTPUTDIR --header --ndr-parser --samba3-ndr-server --server --client --python --dcom-proxy --com-header $PIDL_ARGS --"
 IDL_FILES="$*"
 
 oldpwd=`pwd`
@@ -30,8 +30,8 @@ fi
 list=""
 for f in ${IDL_FILES}; do
         b=`basename $f .idl`
-       outfiles="cli_$b.c $b.h ndr_${b}_c.c ndr_$b.h ndr_${b}_s.c srv_$b.c"
-       outfiles="$outfiles cli_$b.h ndr_$b.c ndr_${b}_c.h py_$b.c srv_$b.h"
+       outfiles="$b.h ndr_${b}_c.c ndr_$b.h ndr_${b}_s.c srv_$b.c"
+       outfiles="$outfiles ndr_$b.c ndr_${b}_c.h py_$b.c srv_$b.h"
 
        for o in $outfiles; do
            [ -f $PIDL_OUTPUTDIR/$o ] || {
index 8f885887654b34438c30f9e8e2e43a14950595d2..97e813ece0935ad2c63c5330b2f31a4f5c2f2c1f 100755 (executable)
@@ -7,7 +7,7 @@ else
        FULL=0
 fi
 
-ARGS="--includedir=../librpc/idl --outputdir $PIDL_OUTPUTDIR --header --ndr-parser --samba3-ndr-server --samba3-ndr-client $PIDL_ARGS --"
+ARGS="--includedir=../librpc/idl --outputdir $PIDL_OUTPUTDIR --header --ndr-parser --client --samba3-ndr-server $PIDL_ARGS --"
 IDL_FILES="$*"
 
 oldpwd=`pwd`
@@ -30,8 +30,8 @@ fi
 list=""
 for f in ${IDL_FILES}; do
         b=`basename $f .idl`
-       outfiles="cli_$b.c $b.h ndr_$b.h srv_$b.c"
-       outfiles="$outfiles cli_$b.h ndr_$b.c srv_$b.h"
+       outfiles="$b.h ndr_$b.h srv_$b.c"
+       outfiles="$outfiles ndr_$b.c srv_$b.h"
 
        for o in $outfiles; do
            [ -f $PIDL_OUTPUTDIR/$o ] || {