diff options
author | Günther Deschner <gd@samba.org> | 2010-08-13 16:01:56 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-08-13 16:04:41 +0200 |
commit | 2c99eef35561cf83b3e75d5d56d4fb03311c4aa8 (patch) | |
tree | f1edc5e059ccc79aea7e3b8365c4311170e2a20e | |
parent | 0f264935e0946f5d369df643028d1cf4b408cf76 (diff) | |
download | samba-2c99eef35561cf83b3e75d5d56d4fb03311c4aa8.tar.gz samba-2c99eef35561cf83b3e75d5d56d4fb03311c4aa8.tar.bz2 samba-2c99eef35561cf83b3e75d5d56d4fb03311c4aa8.zip |
s3-build: remove pointless RPC_PARSE_OBJ2.
Guenther
-rw-r--r-- | source3/Makefile.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 3599114394..ea00b75a58 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -359,7 +359,7 @@ LIBNDR_GEN_OBJ = librpc/gen_ndr/ndr_wkssvc.o \ # that requires knowledge of security contexts REG_PARSE_PRS_OBJ = registry/reg_parse_prs.o -RPC_PARSE_OBJ2 = rpc_client/init_netlogon.o \ +RPC_PARSE_OBJ = rpc_client/init_netlogon.o \ rpc_client/init_lsa.o LIBREPLACE_OBJ = @LIBREPLACE_OBJS@ @@ -700,8 +700,6 @@ RPC_ECHO_OBJ = rpc_server/srv_echo_nt.o librpc/gen_ndr/srv_echo.o RPC_SERVER_OBJ = @RPC_STATIC@ $(RPC_PIPE_OBJ) $(NPA_TSTREAM_OBJ) -RPC_PARSE_OBJ = $(RPC_PARSE_OBJ2) - RPC_CLIENT_OBJ = rpc_client/cli_pipe.o \ librpc/rpc/dcerpc_gssapi.o \ librpc/rpc/dcerpc_spnego.o \ @@ -937,7 +935,7 @@ SMBCONTROL_OBJ = utils/smbcontrol.o $(PARAM_OBJ) $(LIB_NONSMBD_OBJ) \ SMBTREE_OBJ = utils/smbtree.o $(PARAM_OBJ) \ $(PROFILE_OBJ) $(LIB_NONSMBD_OBJ) $(LIBSMB_OBJ) \ $(KRBCLIENT_OBJ) $(POPT_LIB_OBJ) \ - $(RPC_CLIENT_OBJ) ../librpc/rpc/binding.o $(RPC_PARSE_OBJ2) \ + $(RPC_CLIENT_OBJ) ../librpc/rpc/binding.o $(RPC_PARSE_OBJ) \ $(RPC_CLIENT_OBJ1) \ $(PASSDB_OBJ) $(SMBLDAP_OBJ) $(GROUPDB_OBJ) \ $(LIBMSRPC_GEN_OBJ) @@ -1031,7 +1029,7 @@ CLIENT_OBJ1 = client/client.o client/clitar.o $(RPC_CLIENT_OBJ) \ ../librpc/rpc/binding.o \ client/dnsbrowse.o \ $(RPC_CLIENT_OBJ1) \ - $(RPC_PARSE_OBJ2) + $(RPC_PARSE_OBJ) CLIENT_OBJ = $(CLIENT_OBJ1) $(PARAM_OBJ) $(LIBSMB_OBJ) \ $(LIB_NONSMBD_OBJ) $(KRBCLIENT_OBJ) $(LIBMSRPC_GEN_OBJ) \ @@ -1383,7 +1381,7 @@ RPC_OPEN_TCP_OBJ = torture/rpc_open_tcp.o \ $(SMBLDAP_OBJ) $(GROUPDB_OBJ) \ $(LIB_NONSMBD_OBJ) \ $(KRBCLIENT_OBJ) \ - $(RPC_PARSE_OBJ2) \ + $(RPC_PARSE_OBJ) \ $(RPC_CLIENT_OBJ1) \ librpc/rpc/rpc_common.o \ rpc_client/cli_pipe.o \ |