diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-02-02 07:06:28 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2004-02-02 07:06:28 +0000 |
commit | ec5d556a1247cbebaf39a24ed4ad1a2af17de425 (patch) | |
tree | 12056df0e051c4b88f7e406df212e76f9e0e0adb /source4 | |
parent | bfb86c49eac0cced75b7c611005602f2a6b21944 (diff) | |
download | samba-ec5d556a1247cbebaf39a24ed4ad1a2af17de425.tar.gz samba-ec5d556a1247cbebaf39a24ed4ad1a2af17de425.tar.bz2 samba-ec5d556a1247cbebaf39a24ed4ad1a2af17de425.zip |
some systems doesn't have ./ in PATH
so use ./build/pidl/pidl.pl
metze
(This used to be commit 7aab10d507346ac8d748558e5b9dbcfe9a56f601)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/script/build_idl.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index 81b9f61d4e..a51a487612 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="./build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --server" +TABLES="./build/pidl/tables.pl --output librpc/gen_ndr/tables" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl |