diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-08 04:05:57 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-08 04:05:57 +0000 |
commit | 696c70c2f498f9467eadfa23eda340396175a74e (patch) | |
tree | 22623de469e73bbbea0b7b41c2995ed4da6424ed /source4/script | |
parent | 86d0e4b7f1971d4fd4dd5bd91d5a7e087721a239 (diff) | |
download | samba-696c70c2f498f9467eadfa23eda340396175a74e.tar.gz samba-696c70c2f498f9467eadfa23eda340396175a74e.tar.bz2 samba-696c70c2f498f9467eadfa23eda340396175a74e.zip |
fixed shell scripting error
(This used to be commit b18dce549dd390681e70bc0e290d7ec4e44791c3)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/build_idl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |