diff options
author | Julien Kerihuel <j.kerihuel@openchange.org> | 2010-05-12 12:55:56 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-05-12 19:30:56 +0200 |
commit | 9cddf891ad2a09ed1de83f3b51b4f2fc3e6855e8 (patch) | |
tree | fb17a4e66504f0947b30703811014e6b414a0d63 | |
parent | 693995c1c4d36e03537d66db9fa3823baf3e6002 (diff) | |
download | samba-9cddf891ad2a09ed1de83f3b51b4f2fc3e6855e8.tar.gz samba-9cddf891ad2a09ed1de83f3b51b4f2fc3e6855e8.tar.bz2 samba-9cddf891ad2a09ed1de83f3b51b4f2fc3e6855e8.zip |
Choose between local tevent_status.h header file and installed one
Signed-off-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm index 189eb9e8f0..81f8477770 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm @@ -377,7 +377,7 @@ sub Parse($$$$) $res .= "#include <core/ntstatus.h>\n"; } $res .= "#include <tevent.h>\n"; - $res .= "#include \"lib/util/tevent_ntstatus.h\"\n"; + $res .= choose_header("lib/util/tevent_ntstatus.h", "util/tevent_ntstatus.h")."\n"; $res .= "#include \"$ndr_header\"\n"; $res .= "#include \"$client_header\"\n"; $res .= "\n"; |