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 9d50a7192a8d4620a221c571092015891182f63a (commit) from 57eae77c4371c555ba66b24e739bd2aab83732a9 (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/9d50a7192a8d4620a221c571092015891182f...
commit 9d50a7192a8d4620a221c571092015891182f63a Author: Cyril Hrubis metan@ucw.cz Date: Sat May 28 18:50:06 2011 +0200
build: Fix library soname.
diff --git a/lib.mk b/lib.mk index 52793ca..397515a 100644 --- a/lib.mk +++ b/lib.mk @@ -28,13 +28,13 @@ all: $(OBJECTS) $(LIBP)$(LIB).so: $(OBJECTS) ifdef VERBOSE rm -f $(LIBP)$(LIB).so.0 - ln -s $(LIB).so $(LIBP)$(LIB).so.0 - $(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$@.0 $(OBJECTS) -o $@ + cd $(LIBP) && ln -s $(LIB).so $(LIB).so.0 + $(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(LIB).so.0 $(OBJECTS) -o $@ else @rm -f $(LIBP)$(LIB).so.0 - @ln -s $(LIB).so $(LIBP)$(LIB).so.0 + @cd $(LIBP) && ln -s $(LIB).so $(LIB).so.0 @echo "LD $@" - @$(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$@.0 $(OBJECTS) -o $@ + @$(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(LIB).so.0 $(OBJECTS) -o $@ endif
$(LIBP)$(LIB).a: $(OBJECTS)
-----------------------------------------------------------------------
Summary of changes: lib.mk | 8 ++++---- 1 files changed, 4 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.