This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via d5a0602976ef29ab84cac9df07eebf0818eb894e (commit) from d54f2201630102b15e262536d2b99330962102a8 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/d5a0602976ef29ab84cac9df07eebf0818eb8...
commit d5a0602976ef29ab84cac9df07eebf0818eb894e Author: Cyril Hrubis metan@ucw.cz Date: Fri Nov 15 19:41:54 2013 +0100
tests: framework: Makefile: Fix LDLIBS.
The -ldl must be after the object files. (fixes tests on Ubuntu)
Fix the output to match the rest of nonverbose build.
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/tests/framework/Makefile b/tests/framework/Makefile index 15cd84a..a5da130 100644 --- a/tests/framework/Makefile +++ b/tests/framework/Makefile @@ -4,9 +4,8 @@ include $(TOPDIR)/pre.mk CSOURCES=$(shell echo *.c)
INCLUDE= -LDFLAGS+=-L. -LDLIBS+=-ltst_preload -lm -ldl -ltst -lrt -CFLAGS+= +LDFLAGS=-L. +LDLIBS=-ltst_preload -lm -ldl -ltst -lrt
test: libtst.a
@@ -15,10 +14,20 @@ APPS=test ALL+=libtst_preload.so libtst.a
libtst_preload.so: tst_preload.o tst_malloc_canaries.o tst_preload_FILE.o - $(CC) -Wl,-soname -Wl,tst_preload.so --shared -ldl -fPIC $^ -o $@ +ifndef VERBOSE + @echo "LD libtst_preload.so" + @$(CC) -Wl,-soname -Wl,tst_preload.so --shared -fPIC $^ -ldl -o $@ +else + $(CC) -Wl,-soname -Wl,tst_preload.so --shared -fPIC $^ -ldl -o $@ +endif
libtst.a: tst_suite.o tst_job.o tst_msg.o tst_log.o tst_main.o tst_timespec.o +ifndef VERBOSE + @echo "AR libtst.a" + @$(AR) rcs $@ $^ +else $(AR) rcs $@ $^ +endif
CLEAN+=libtst_preload.so libtst.a log.json
-----------------------------------------------------------------------
Summary of changes: tests/framework/Makefile | 17 +++++++++++++---- 1 files changed, 13 insertions(+), 4 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.