diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-29 08:35:30 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-03-29 21:34:29 +1100 |
commit | 7ed349caceed2524d897d957cee98ad1cdc4704c (patch) | |
tree | 1c82cc0261e6083e6f16a813483c7c7712fdf8c1 /lib/talloc | |
parent | 08faa3a43c26f8cc637969d2b216f2efea9099d9 (diff) | |
download | samba-7ed349caceed2524d897d957cee98ad1cdc4704c.tar.gz samba-7ed349caceed2524d897d957cee98ad1cdc4704c.tar.bz2 samba-7ed349caceed2524d897d957cee98ad1cdc4704c.zip |
pytalloc: allow for using a system libtalloc-dev with pytalloc
When we have a system talloc library, we still need to grab pytalloc.h
from lib/talloc. We don't want to just use -Ilib/talloc, as otherwise
we'll get the in-tree talloc.h which may not be compatible with the
system talloc.h
So we need to give the path to pytalloc.h
Diffstat (limited to 'lib/talloc')
-rw-r--r-- | lib/talloc/pytalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/talloc/pytalloc.c b/lib/talloc/pytalloc.c index ad595a1054..5ed88eca88 100644 --- a/lib/talloc/pytalloc.c +++ b/lib/talloc/pytalloc.c @@ -20,7 +20,7 @@ #include <Python.h> #include "replace.h" #include <talloc.h> -#include <pytalloc.h> +#include "pytalloc.h" /** * Simple dealloc for talloc-wrapping PyObjects |