diff options
author | Tim Potter <tpot@samba.org> | 2002-03-20 04:51:40 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-03-20 04:51:40 +0000 |
commit | 9cd6e74e8be399a72921325a0ca87cc523dd0cec (patch) | |
tree | 2331f88082ad05c231c50d7f5f2953004e9ab6a1 /source3/python/setup.py.in | |
parent | 97ec0686f1dbfa86668c66647d68354b446434b3 (diff) | |
download | samba-9cd6e74e8be399a72921325a0ca87cc523dd0cec.tar.gz samba-9cd6e74e8be399a72921325a0ca87cc523dd0cec.tar.bz2 samba-9cd6e74e8be399a72921325a0ca87cc523dd0cec.zip |
Remove nsswitch from include directories.
(This used to be commit 19dd8ba8267320c0f219639abe3aa701b69e5c56)
Diffstat (limited to 'source3/python/setup.py.in')
-rwxr-xr-x | source3/python/setup.py.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/python/setup.py.in b/source3/python/setup.py.in index 17a722fc92..ce29bcc37f 100755 --- a/source3/python/setup.py.in +++ b/source3/python/setup.py.in @@ -38,6 +38,8 @@ samba_cflags = "" if os.environ.has_key("PYTHON_CFLAGS"): samba_cflags = os.environ.get("PYTHON_CFLAGS") +print "FLAGS =", samba_cflags + # These variables are filled in by configure samba_libs = "@LIBS@" @@ -66,8 +68,8 @@ setup( # Build info - include_dirs = [".", "include", "ubiqx", "nsswitch", "smbwrapper", - "popt", "/usr/kerberos/include"], + include_dirs = [".", "include", "ubiqx", "smbwrapper", + "popt", "/usr/kerberos/include", "/usr/local/include"], # Module list |