From 19fba1fafabefab8f6382c54809c45daceda9030 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 14 May 2004 12:01:31 +0000 Subject: r725: fix usage of $PERL to "$PERL" to handle perl -W correct metze (This used to be commit b1161c4c832dd0a2975eee0908d9d5cd6171f608) --- source4/script/build_idl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/script/build_idl.sh') diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index a51a487612..ec67c0aec0 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -4,8 +4,8 @@ FULLBUILD=$1 [ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1 -PIDL="./build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --server" -TABLES="./build/pidl/tables.pl --output librpc/gen_ndr/tables" +PIDL="$PERL ./build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --server" +TABLES="$PERL ./build/pidl/tables.pl --output librpc/gen_ndr/tables" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl -- cgit