diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-04-02 12:29:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:51 -0500 |
commit | a7d4912fcf7b7071eb3013b4b774512e5aa5d75a (patch) | |
tree | 59262f84cf49b0cb0e9be868f556a8808fb989fd /source3 | |
parent | 6c9eaa6880897aabbc56ad3d7bd73dfc69f926f9 (diff) | |
download | samba-a7d4912fcf7b7071eb3013b4b774512e5aa5d75a.tar.gz samba-a7d4912fcf7b7071eb3013b4b774512e5aa5d75a.tar.bz2 samba-a7d4912fcf7b7071eb3013b4b774512e5aa5d75a.zip |
r14863: try to make the generation of bin/timelimit more portable
jerry: can you test that please
metze
(This used to be commit aa76c2edee17a023ee49f9b960a79df402f785ea)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 7d37fa5e5d..f7aba689ff 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1395,8 +1395,9 @@ bin/t_push_ucs2@EXEEXT@: bin/libbigballofmud.@SHLIBEXT@ torture/t_push_ucs2.o bin/t_snprintf@EXEEXT@: lib/snprintf.c $(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $(DYNEXP) -DTEST_SNPRINTF lib/snprintf.c -lm -bin/timelimit@EXEEXT@: script/tests/timelimit.c - $(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $(DYNEXP) script/tests/timelimit.c +bin/timelimit@EXEEXT@: script/tests/timelimit.o + @echo Linking $@ + @$(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $(DYNEXP) script/tests/timelimit.o install: installservers installbin @INSTALL_CIFSMOUNT@ installman installscripts installdat installswat installmodules @INSTALL_LIBSMBCLIENT@ @INSTALL_LIBMSRPC@ @INSTALL_PAM_MODULES@ |