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 14eef5929f17ab225a542656b639e0569ec8af7b (commit) from 0a1577d93e3b866dda65e0aac1831b015628d4ca (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/14eef5929f17ab225a542656b639e0569ec8a...
commit 14eef5929f17ab225a542656b639e0569ec8af7b Author: Cyril Hrubis metan@ucw.cz Date: Wed Jan 2 22:27:11 2013 +0100
build: Fix typo in lib.mk.
diff --git a/lib.mk b/lib.mk index 0c5917b..62bf1b5 100644 --- a/lib.mk +++ b/lib.mk @@ -28,27 +28,27 @@ ALL+=$(LIBS) $(SYMLINKS) CLEAN+=$(LIBS) $(addprefix $(BUILD_DIR),$(SYMLINKS))
# -# OBJECTS are set in post.mk so we need to set it here too to have -# correct dependencies we don't care that they are overwritten laten +# OBJECTS are set in post.mk so we need to duplicate the values in +# OBJS here too to have correct dependencies # -OBJECTS=$(CSOURCES=.c=.o) +OBJS=$(CSOURCES:.c=.o)
-$(BUILD_DIR)$(DYNAMIC_LIB): $(OBJECTS) +$(BUILD_DIR)$(DYNAMIC_LIB): $(OBJS) ifdef VERBOSE rm -f $@ - $(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $(OBJECTS) -o $@ + $(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $? -o $@ else @rm -f $(@) @echo "LD $@" - @$(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $(OBJECTS) -o $@ + @$(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $? -o $@ endif
-$(BUILD_DIR)$(STATIC_LIB): $(OBJECTS) +$(BUILD_DIR)$(STATIC_LIB): $(OBJS) ifdef VERBOSE - $(AR) rcs $@ $(OBJECTS) + $(AR) rcs $@ $? else @echo "AR $@" - @$(AR) rcs $@ $(OBJECTS) + @$(AR) rcs $@ $? endif
$(SYMLINKS): $(BUILD_DIR)$(DYNAMIC_LIB)
-----------------------------------------------------------------------
Summary of changes: lib.mk | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 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.