From fcc46998205c09f5d0c4e544c305d1e9b0873e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Jacke?= Date: Wed, 16 Jun 2010 13:48:53 +0200 Subject: [PATCH] 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) --- source3/Makefile.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/Makefile.in b/source3/Makefile.in index 6030a10..08581a4 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) -- 1.7.1