diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 19:07:07 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 19:07:07 +0200 |
commit | 4d2f44163e07995949fcf915019e0a6eb7c00b24 (patch) | |
tree | ee249d617f7b6a77df7b4b038ac49494faea6107 /source4/libnet | |
parent | 98154fdf05b725a9b7d7bdcd572a165c3fa865c1 (diff) | |
download | samba-4d2f44163e07995949fcf915019e0a6eb7c00b24.tar.gz samba-4d2f44163e07995949fcf915019e0a6eb7c00b24.tar.xz samba-4d2f44163e07995949fcf915019e0a6eb7c00b24.zip |
Use variables for source path in libnet/ and scripting/python.
(This used to be commit fb10a81b9484642099ecbe896eabe00a4417bc42)
Diffstat (limited to 'source4/libnet')
-rw-r--r-- | source4/libnet/config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libnet/config.mk b/source4/libnet/config.mk index 243fc1813a..2d82b0bc42 100644 --- a/source4/libnet/config.mk +++ b/source4/libnet/config.mk @@ -2,7 +2,7 @@ PRIVATE_PROTO_HEADER = libnet_proto.h PUBLIC_DEPENDENCIES = CREDENTIALS dcerpc dcerpc_samr RPC_NDR_LSA RPC_NDR_SRVSVC RPC_NDR_DRSUAPI LIBCLI_COMPOSITE LIBCLI_RESOLVE LIBCLI_FINDDCS LIBCLI_CLDAP LIBCLI_FINDDCS gensec_schannel LIBCLI_AUTH LIBNDR SMBPASSWD PROVISION -LIBSAMBA-NET_OBJ_FILES = $(addprefix libnet/, \ +LIBSAMBA-NET_OBJ_FILES = $(addprefix $(libnetdir)/, \ libnet.o libnet_passwd.o libnet_time.o libnet_rpc.o \ libnet_join.o libnet_site.o libnet_become_dc.o libnet_unbecome_dc.o \ libnet_vampire.o libnet_samdump.o libnet_samdump_keytab.o \ @@ -13,4 +13,4 @@ LIBSAMBA-NET_OBJ_FILES = $(addprefix libnet/, \ [PYTHON::python_net] PRIVATE_DEPENDENCIES = LIBSAMBA-NET -python_net_OBJ_FILES = libnet/py_net.o +python_net_OBJ_FILES = $(libnetdir)/py_net.o |