fix CONFIGURE_PATH and add MAKE_PATH
SVN-Revision: 6680
This commit is contained in:
parent
036a419fe1
commit
ac75c5015f
1 changed files with 4 additions and 2 deletions
|
@ -76,7 +76,7 @@ CONFIGURE_PATH = .
|
||||||
|
|
||||||
define Build/Configure/Default
|
define Build/Configure/Default
|
||||||
(cd $(PKG_BUILD_DIR)/$(strip $(3)); \
|
(cd $(PKG_BUILD_DIR)/$(strip $(3)); \
|
||||||
if [ -x configure ]; then \
|
if [ -x $(CONFIGURE_PATH)/configure ]; then \
|
||||||
$(CONFIGURE_VARS) \
|
$(CONFIGURE_VARS) \
|
||||||
$(2) \
|
$(2) \
|
||||||
$(CONFIGURE_PATH)/configure \
|
$(CONFIGURE_PATH)/configure \
|
||||||
|
@ -96,9 +96,11 @@ MAKE_FLAGS = \
|
||||||
CROSS="$(TARGET_CROSS)" \
|
CROSS="$(TARGET_CROSS)" \
|
||||||
ARCH="$(ARCH)"
|
ARCH="$(ARCH)"
|
||||||
|
|
||||||
|
MAKE_PATH = .
|
||||||
|
|
||||||
define Build/Compile/Default
|
define Build/Compile/Default
|
||||||
$(MAKE_VARS) \
|
$(MAKE_VARS) \
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \
|
||||||
$(MAKE_FLAGS) \
|
$(MAKE_FLAGS) \
|
||||||
$(1);
|
$(1);
|
||||||
endef
|
endef
|
||||||
|
|
Loading…
Reference in a new issue