mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:01:52 +02:00
split CONFIGURE_PATH into CONFIGURE_PATH and CONFIGURE_CMD for better handling of subdirectories with configure
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6681 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
5d0a9887c8
commit
51eaa39dca
@ -73,13 +73,14 @@ CONFIGURE_VARS = \
|
|||||||
PKG_CONFIG_LIBDIR="$(STAGING_DIR)/usr/lib/pkgconfig"
|
PKG_CONFIG_LIBDIR="$(STAGING_DIR)/usr/lib/pkgconfig"
|
||||||
|
|
||||||
CONFIGURE_PATH = .
|
CONFIGURE_PATH = .
|
||||||
|
CONFIGURE_CMD = ./configure
|
||||||
|
|
||||||
define Build/Configure/Default
|
define Build/Configure/Default
|
||||||
(cd $(PKG_BUILD_DIR)/$(strip $(3)); \
|
(cd $(PKG_BUILD_DIR)/$(CONFIGURE_PATH)/$(strip $(3)); \
|
||||||
if [ -x $(CONFIGURE_PATH)/configure ]; then \
|
if [ -x $(CONFIGURE_CMD) ]; then \
|
||||||
$(CONFIGURE_VARS) \
|
$(CONFIGURE_VARS) \
|
||||||
$(2) \
|
$(2) \
|
||||||
$(CONFIGURE_PATH)/configure \
|
$(CONFIGURE_CMD) \
|
||||||
$(CONFIGURE_ARGS) \
|
$(CONFIGURE_ARGS) \
|
||||||
$(1); \
|
$(1); \
|
||||||
fi; \
|
fi; \
|
||||||
|
Loading…
Reference in New Issue
Block a user