|
From: Cyril H. <su...@li...> - 2013-10-31 11:51:06
|
The branch, master, has been updated
via abaa460b225ac40cc2f1f5f1052cd9ce44036111 (commit)
from 8c200cb8e843724afb49fa6617fceec09ac826a5 (commit)
- Log -----------------------------------------------------------------
commit abaa460b225ac40cc2f1f5f1052cd9ce44036111
Author: Cyril Hrubis <ch...@su...>
Date: Thu Oct 31 12:26:04 2013 +0100
build: Change MAKE_TARGETS in include/mk/lib.mk
Currently the lib.mk sets the MAKE_TARGETS to $(LIB) which does not
allow any other targets to be added before the lib.mk is included.
This commit changes the := to += so that the $(LIB) target is added to
the list instead.
Signed-off-by: Cyril Hrubis <ch...@su...>
-----------------------------------------------------------------------
Summary of changes:
include/mk/lib.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/mk/lib.mk b/include/mk/lib.mk
index 96c08eb..456db24 100644
--- a/include/mk/lib.mk
+++ b/include/mk/lib.mk
@@ -46,7 +46,7 @@ ifneq ($(MAKECMDGOALS),install)
LIB ?= $(INTERNAL_LIB)
endif
-MAKE_TARGETS := $(LIB)
+MAKE_TARGETS += $(LIB)
LIBSRCS ?= $(wildcard $(abs_srcdir)/*.c)
hooks/post-receive
--
ltp
|