diff options
author | Günther Deschner <gd@samba.org> | 2010-09-14 23:58:10 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-15 08:25:23 +0200 |
commit | 2d23ddb68d20a7e10297841ff7a550c03a8c6b74 (patch) | |
tree | 659b76c02d4ac759406964043663401d069bcd44 | |
parent | f7051250eab1bb3336b3159e3b9a077a0e046263 (diff) | |
download | samba-2d23ddb68d20a7e10297841ff7a550c03a8c6b74.tar.gz samba-2d23ddb68d20a7e10297841ff7a550c03a8c6b74.tar.bz2 samba-2d23ddb68d20a7e10297841ff7a550c03a8c6b74.zip |
s3-build: only link in prs parser where needed.
Guenther
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 321eb3cf33..cde2d7d4ab 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -541,7 +541,6 @@ LIBSMB_ERR_OBJ0 = $(NTERR_OBJ) $(DOSERR_OBJ) $(ERRORMAP_OBJ) $(DCE_RPC_ERR_OBJ) LIBSMB_ERR_OBJ1 = ../libcli/auth/smbdes.o ../libcli/auth/smbencrypt.o ../libcli/auth/msrpc_parse.o ../libcli/auth/session.o LIBSMB_ERR_OBJ = $(LIBSMB_ERR_OBJ0) $(LIBSMB_ERR_OBJ1) \ - $(REG_PARSE_PRS_OBJ) \ $(SECRETS_OBJ) LIBSMB_OBJ0 = \ @@ -617,7 +616,8 @@ REG_INIT_BASIC_OBJ = registry/reg_init_basic.o REG_INIT_SMBCONF_OBJ = registry/reg_init_smbconf.o REG_INIT_FULL_OBJ = registry/reg_init_full.o -REGFIO_OBJ = registry/regfio.o +REGFIO_OBJ = registry/regfio.o \ + $(REG_PARSE_PRS_OBJ) REGOBJS_OBJ = registry/reg_objects.o |