summaryrefslogtreecommitdiff
path: root/source4/script/build_idl.sh
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-08 07:37:38 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-08 07:37:38 +0000
commit8fa36b1fbc621a55e888021e023c10f52f2eee71 (patch)
tree9c84d049ac437b7187368e25f8f4d3ae26960d49 /source4/script/build_idl.sh
parent696c70c2f498f9467eadfa23eda340396175a74e (diff)
downloadsamba-8fa36b1fbc621a55e888021e023c10f52f2eee71.tar.gz
samba-8fa36b1fbc621a55e888021e023c10f52f2eee71.tar.bz2
samba-8fa36b1fbc621a55e888021e023c10f52f2eee71.zip
some systems don't have "which" and some systems don't have the "-nt"
flag to test. It's amazing that systems like that are ever sold. (This used to be commit fe91635da87104544946983c7c63d5c584db614a)
Diffstat (limited to 'source4/script/build_idl.sh')
-rwxr-xr-xsource4/script/build_idl.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh
index e5d3f4a27b..6ca0063184 100755
--- a/source4/script/build_idl.sh
+++ b/source4/script/build_idl.sh
@@ -4,15 +4,6 @@ FULLBUILD=$1
[ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
-if [ ! -f build/pidl/idl.pm -o build/pidl/idl.yp -nt build/pidl/idl.pm ]; then
- if which yapp; then
- echo Rebuilding IDL parser
- ( cd build/pidl && make ) || exit 1;
- else
- echo "warning: yapp is not installed";
- fi
-fi
-
PIDL="build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser"
TABLES="build/pidl/tables.pl --output librpc/gen_ndr/tables"