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 discards d5a0602976ef29ab84cac9df07eebf0818eb894e (commit) via a38bd31917407a2fd2b4054c51f6421c2d79654f (commit)
This update added new revisions after undoing existing revisions. That is to say, the old revision is not a strict subset of the new revision. This situation occurs when you --force push a change and generate a repository containing something like this:
* -- * -- B -- O -- O -- O (d5a0602976ef29ab84cac9df07eebf0818eb894e) N -- N -- N (a38bd31917407a2fd2b4054c51f6421c2d79654f)
When this happens we assume that you've already had alert emails for all of the O revisions, and so we here report only the revisions in the N branch from the common base, B.
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/a38bd31917407a2fd2b4054c51f6421c2d796...
commit a38bd31917407a2fd2b4054c51f6421c2d79654f 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..5b13c0f 100644 --- a/tests/framework/Makefile +++ b/tests/framework/Makefile @@ -5,8 +5,7 @@ CSOURCES=$(shell echo *.c)
INCLUDE= LDFLAGS+=-L. -LDLIBS+=-ltst_preload -lm -ldl -ltst -lrt -CFLAGS+= +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 | 2 +- 1 files changed, 1 insertions(+), 1 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.