summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2010-06-16 13:48:53 +0200
committerKarolin Seeger <kseeger@samba.org>2010-06-18 08:33:32 +0200
commit4d0c7560b1eb028ad653ca6928234c83238ae9ec (patch)
tree5f1d0d105da2b488e9d6ebf2309b1a49410def62
parent4ab4485676d3ae203e83718d954e7ec6d695b33a (diff)
downloadsamba-4d0c7560b1eb028ad653ca6928234c83238ae9ec.tar.gz
s3:Makefile: fix a typo in flag variable name
This is the backport of 60cba59ff8ee75e3d476c1b293ca2f545b7f9e49 and fixes another build error on AIX. see also bug #7504 (numerous build glitches to be fixed) (cherry picked from commit be585bb0cd81f5ddd3345f04990eaddfa1e13eda)
-rw-r--r--source3/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 6030a10124a..08581a4304f 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -2923,14 +2923,14 @@ bin/rpc_open_tcp@EXEEXT@: $(BINARY_PREREQS) $(RPC_OPEN_TCP_OBJ) $(LIBTALLOC) $(L
bin/test_lp_load@EXEEXT@: $(BINARY_PREREQS) $(TEST_LP_LOAD_OBJ) @BUILD_POPT@ $(LIBTALLOC) $(LIBTDB)
@echo "Linking $@"
@$(CC) -o $@ $(TEST_LP_LOAD_OBJ) \
- $(LDFLAGS) $(DYNEEXP) $(LIBS) \
+ $(LDFLAGS) $(DYNEXP) $(LIBS) \
$(LDAP_LIBS) \
$(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS)
bin/dbwrap_tool@EXEEXT@: $(DBWRAP_TOOL_OBJ) $(LIBTALLOC) $(LIBTDB) $(LIBWBCLIENT)
@echo "Linking $@"
@$(CC) -o $@ $(DBWRAP_TOOL_OBJ)\
- $(LDFLAGS) $(DYNEEXP) $(LIBS) \
+ $(LDFLAGS) $(DYNEXP) $(LIBS) \
$(LDAP_LIBS) \
@LIBWBCLIENT_STATIC@ $(LIBWBCLIENT_LIBS) \
$(LIBTALLOC_LIBS) $(LIBTDB_LIBS)