diff options
author | Ronnie Sahlberg <ronniesahlberg@gmail.com> | 2011-08-23 15:13:40 +1000 |
---|---|---|
committer | Ronnie Sahlberg <ronniesahlberg@gmail.com> | 2011-08-23 15:32:27 +1000 |
commit | c0f724e0f9e0cff5ee36a0d9ea8ca7a0b5a1e1d2 (patch) | |
tree | 92af2558e39a64b94f528192272bc9aa1be36ec1 /ctdb/Makefile.in | |
parent | b00b0e9d2e1996449daed0f828b8f211f6bd7e6b (diff) | |
download | samba-c0f724e0f9e0cff5ee36a0d9ea8ca7a0b5a1e1d2.tar.gz samba-c0f724e0f9e0cff5ee36a0d9ea8ca7a0b5a1e1d2.tar.xz samba-c0f724e0f9e0cff5ee36a0d9ea8ca7a0b5a1e1d2.zip |
LibCTDB : change the ctdb_fetch_lock_once test tool to use libctdb instead of the old client
(This used to be ctdb commit cd1080726d7787b335ab4bfb64a7991237ab92f5)
Diffstat (limited to 'ctdb/Makefile.in')
-rwxr-xr-x | ctdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/Makefile.in b/ctdb/Makefile.in index 0cce22e0d7a..02e1d0a9f41 100755 --- a/ctdb/Makefile.in +++ b/ctdb/Makefile.in @@ -167,9 +167,9 @@ tests/bin/ctdb_fetch_one: $(CTDB_CLIENT_OBJ) tests/src/ctdb_fetch_one.o @echo Linking $@ @$(CC) $(CFLAGS) -o $@ tests/src/ctdb_fetch_one.o $(CTDB_CLIENT_OBJ) $(LIB_FLAGS) -tests/bin/ctdb_fetch_lock_once: $(CTDB_CLIENT_OBJ) tests/src/ctdb_fetch_lock_once.o +tests/bin/ctdb_fetch_lock_once: libctdb/libctdb.a tests/src/ctdb_fetch_lock_once.o @echo Linking $@ - @$(CC) $(CFLAGS) -o $@ tests/src/ctdb_fetch_lock_once.o $(CTDB_CLIENT_OBJ) $(LIB_FLAGS) + @$(CC) $(CFLAGS) -o $@ tests/src/ctdb_fetch_lock_once.o libctdb/libctdb.a -ltdb $(LIB_FLAGS) tests/bin/ctdb_store: $(CTDB_CLIENT_OBJ) tests/src/ctdb_store.o @echo Linking $@ |