From 8fa36b1fbc621a55e888021e023c10f52f2eee71 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 8 Dec 2003 07:37:38 +0000 Subject: 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) --- source4/script/build_idl.sh | 9 --------- 1 file changed, 9 deletions(-) (limited to 'source4/script') 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" -- cgit