diff options
author | Christian Ambach <ambi@samba.org> | 2013-02-18 17:34:25 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2013-02-19 19:15:19 +0100 |
commit | 432dde0223d884b7de1a9d3c0655304efbcf1f88 (patch) | |
tree | 28f588b32389603a066fddbadc6aa72601699d36 | |
parent | e7f66f37a62ad954e8b0a048905f0e6688b70849 (diff) | |
download | samba-432dde0223d884b7de1a9d3c0655304efbcf1f88.tar.gz samba-432dde0223d884b7de1a9d3c0655304efbcf1f88.tar.bz2 samba-432dde0223d884b7de1a9d3c0655304efbcf1f88.zip |
s3:build fix the build with --fake-kaserver
this fixes Bug 9643 - Build in source3 of bin/net fails when configure option
--with-fake-kaserver is used
Bug: https://bugzilla.samba.org/show_bug.cgi?id=9643
Signed-off-by: Christian Ambach <ambi@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Tue Feb 19 19:15:19 CET 2013 on sn-devel-104
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 35199e9c83..651d286420 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1241,7 +1241,7 @@ NET_OBJ1 = utils/net.o utils/net_ads.o utils/net_help.o \ NET_OBJ2 = utils/net_registry_util.o utils/net_help_common.o NET_OBJ = $(NET_OBJ1) \ - $(NET_OBJ2) \ + $(NET_OBJ2) @FAKE_KASERVER_OBJ@ \ $(LIBADDNS_OBJ0) \ $(READLINE_OBJ) \ $(LIBGPO_OBJ) $(INIPARSER_OBJ) $(DISPLAY_SEC_OBJ) \ |