diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-20 05:39:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-20 05:39:54 +0000 |
commit | 9fb8ee5765a60ddd1d559df251254b32a6d81847 (patch) | |
tree | 2ec50370d63e30e0cd81f7e267d53ca309383ad8 /source4/build/pidl/pidl.pl | |
parent | a6e5654b3dbfcefde863dead8031630ae476b5b9 (diff) | |
download | samba-9fb8ee5765a60ddd1d559df251254b32a6d81847.tar.gz samba-9fb8ee5765a60ddd1d559df251254b32a6d81847.tar.bz2 samba-9fb8ee5765a60ddd1d559df251254b32a6d81847.zip |
* cope with pidl not being in $HOME/pidl
* cope with empty structures in unions
(This used to be commit a706ff78937bea64acd28381466770749566399f)
Diffstat (limited to 'source4/build/pidl/pidl.pl')
-rwxr-xr-x | source4/build/pidl/pidl.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/pidl/pidl.pl b/source4/build/pidl/pidl.pl index 484223d4aa..f68a722382 100755 --- a/source4/build/pidl/pidl.pl +++ b/source4/build/pidl/pidl.pl @@ -8,8 +8,8 @@ use strict; -use lib "$ENV{HOME}/pidl"; - +use FindBin qw($RealBin); +use lib "$RealBin"; use Getopt::Long; use idl; use dump; |