diff options
author | Tim Potter <tpot@samba.org> | 2004-03-24 23:52:11 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2004-03-24 23:52:11 +0000 |
commit | 78502504451b9ea21a8f4035a3e7e9626a6b2108 (patch) | |
tree | 7c5df8b99c991bb1a4468a7b8241cb62db828abe | |
parent | cc98a35689b114aed9bab705e54881e5439805e3 (diff) | |
download | samba-78502504451b9ea21a8f4035a3e7e9626a6b2108.tar.gz samba-78502504451b9ea21a8f4035a3e7e9626a6b2108.tar.bz2 samba-78502504451b9ea21a8f4035a3e7e9626a6b2108.zip |
Path for bugzilla #1152 from Timur Bakeyev. Allow python modules to
build despite libraries added to LDFLAGS instead of LDPATH.
(This used to be commit 98a25dcda8e53e22b48930131ff394414056f6a1)
-rw-r--r-- | source3/Makefile.in | 4 | ||||
-rwxr-xr-x | source3/python/setup.py | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 843e843a1e..daa626af57 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1284,7 +1284,7 @@ python_ext: $(PYTHON_PICOBJS) fi PYTHON_OBJS="$(PYTHON_PICOBJS)" \ PYTHON_CFLAGS="$(CFLAGS) $(CPPFLAGS) $(FLAGS)" \ - LIBS="$(LIBS) $(PASSDB_LIBS) $(IDMAP_LIBS) $(KRB5LIBS) $(LDAP_LIBS)" \ + LIBS="$(LDFLAGS) $(LIBS) $(PASSDB_LIBS) $(IDMAP_LIBS) $(KRB5LIBS) $(LDAP_LIBS)" \ $(PYTHON) python/setup.py build python_install: $(PYTHON_PICOBJS) @@ -1294,7 +1294,7 @@ python_install: $(PYTHON_PICOBJS) fi PYTHON_OBJS="$(PYTHON_PICOBJS)" \ PYTHON_CFLAGS="$(CFLAGS) $(CPPFLAGS)" \ - LIBS="$(LIBS)" \ + LIBS="$(LDFLAGS) $(LIBS)" \ $(PYTHON) python/setup.py install python_clean: diff --git a/source3/python/setup.py b/source3/python/setup.py index a9f220f195..4a4f6ad3f8 100755 --- a/source3/python/setup.py +++ b/source3/python/setup.py @@ -57,6 +57,9 @@ for lib in string.split(samba_libs): if lib[0:2] == "-L": library_dirs.append(lib[2:]) continue + if lib[0:2] == "-W": + # Skip linker flags + continue print "Unknown entry '%s' in $LIBS variable passed to setup.py" % lib sys.exit(1) |