diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-12-16 19:46:43 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-12-16 19:46:43 +0100 |
commit | d59a79e5bb425d260af3261e88422eeaf1f1359c (patch) | |
tree | f843c4988369e0f300cac4edafdd0134b9f19fce /librpc | |
parent | f1773a91874863ebb1a64ea24f715342739d2b9a (diff) | |
download | samba-d59a79e5bb425d260af3261e88422eeaf1f1359c.tar.gz samba-d59a79e5bb425d260af3261e88422eeaf1f1359c.tar.bz2 samba-d59a79e5bb425d260af3261e88422eeaf1f1359c.zip |
Use py_* files to check whether generated files are out of date / not
present.
ndr_*.c files are in git (required for Samba 3), py_*.c files are not.
Diffstat (limited to 'librpc')
-rwxr-xr-x | librpc/build_idl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/build_idl.sh b/librpc/build_idl.sh index bd0e74e556..ac0fab4801 100755 --- a/librpc/build_idl.sh +++ b/librpc/build_idl.sh @@ -30,7 +30,7 @@ fi list="" for f in ${IDL_FILES}; do basename=`basename $f .idl` - ndr="$PIDL_OUTPUTDIR/ndr_$basename.c" + ndr="$PIDL_OUTPUTDIR/py_$basename.c" if [ -f $ndr ]; then if [ "x`find $f -newer $ndr -print`" = "x$f" ]; then |