diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 19:46:09 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 19:46:09 +0200 |
commit | 137ec6e340610759ed0653b11eafb3f4243e2728 (patch) | |
tree | 965f03f77e9dc0e626a74efa64637b25fbb2eee9 /source4/nsswitch | |
parent | 4f0db429588e550d97db21fc0c17231c2ea2a25d (diff) | |
download | samba-137ec6e340610759ed0653b11eafb3f4243e2728.tar.gz samba-137ec6e340610759ed0653b11eafb3f4243e2728.tar.bz2 samba-137ec6e340610759ed0653b11eafb3f4243e2728.zip |
Use variables for source directory in a couple more places.
(This used to be commit 2860a7db5968c7007522cdb300eba390da929ab8)
Diffstat (limited to 'source4/nsswitch')
-rw-r--r-- | source4/nsswitch/config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/nsswitch/config.mk b/source4/nsswitch/config.mk index a0ceff0033..e8b9600882 100644 --- a/source4/nsswitch/config.mk +++ b/source4/nsswitch/config.mk @@ -1,7 +1,7 @@ [SUBSYSTEM::LIBWINBIND-CLIENT] PRIVATE_DEPENDENCIES = SOCKET_WRAPPER -LIBWINBIND-CLIENT_OBJ_FILES = nsswitch/wb_common.o +LIBWINBIND-CLIENT_OBJ_FILES = $(nsswitchsrcdir)/wb_common.o ################################# # Start BINARY nsstest @@ -14,7 +14,7 @@ PRIVATE_DEPENDENCIES = \ # End BINARY nsstest ################################# -nsstest_OBJ_FILES = nsswitch/nsstest.o +nsstest_OBJ_FILES = $(nsswitchsrcdir)/nsstest.o ################################# # Start BINARY wbinfo @@ -31,4 +31,4 @@ PRIVATE_DEPENDENCIES = \ ################################# wbinfo_OBJ_FILES = \ - nsswitch/wbinfo.o + $(nsswitchsrcdir)/wbinfo.o |