diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 19:54:27 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 19:54:27 +0200 |
commit | 03643aec88244d976da394521adbd29a31339569 (patch) | |
tree | 5b83a726cb5144ba4f27b55bb956041d15a35be9 /source4/ntptr | |
parent | 137ec6e340610759ed0653b11eafb3f4243e2728 (diff) | |
download | samba-03643aec88244d976da394521adbd29a31339569.tar.gz samba-03643aec88244d976da394521adbd29a31339569.tar.bz2 samba-03643aec88244d976da394521adbd29a31339569.zip |
Use variables for source directory in a couple more places.
(This used to be commit c41bd3005f5f0b9cfd3709fc9217b4a401d265b4)
Diffstat (limited to 'source4/ntptr')
-rw-r--r-- | source4/ntptr/config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/ntptr/config.mk b/source4/ntptr/config.mk index dda4c29444..1f59aea063 100644 --- a/source4/ntptr/config.mk +++ b/source4/ntptr/config.mk @@ -10,7 +10,7 @@ PRIVATE_DEPENDENCIES = \ # End MODULE ntptr_simple_ldb ################################################ -ntptr_simple_ldb_OBJ_FILES = ntptr/simple_ldb/ntptr_simple_ldb.o +ntptr_simple_ldb_OBJ_FILES = $(ntptrsrcdir)/simple_ldb/ntptr_simple_ldb.o ################################################ # Start SUBSYSTEM ntptr @@ -22,5 +22,5 @@ PUBLIC_DEPENDENCIES = DCERPC_COMMON ################################################ ntptr_OBJ_FILES = \ - ntptr/ntptr_base.o \ - ntptr/ntptr_interface.o + $(ntptrsrcdir)/ntptr_base.o \ + $(ntptrsrcdir)/ntptr_interface.o |