From 696c70c2f498f9467eadfa23eda340396175a74e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 8 Dec 2003 04:05:57 +0000 Subject: fixed shell scripting error (This used to be commit b18dce549dd390681e70bc0e290d7ec4e44791c3) --- source4/script/build_idl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/script') diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index 159cd1b36c..e5d3f4a27b 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -5,7 +5,7 @@ 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 + if which yapp; then echo Rebuilding IDL parser ( cd build/pidl && make ) || exit 1; else -- cgit