intltool: fix broken compile on WSL
If PATH contains space, like in WSL where you have also Windows dir, compilation of this package is broken. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
This commit is contained in:
parent
3ee32eb9bc
commit
cea49c620d
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ include $(INCLUDE_DIR)/host-build.mk
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
HOST_CONFIGURE_VARS+= \
|
HOST_CONFIGURE_VARS+= \
|
||||||
PATH=$(STAGING_DIR_HOSTPKG)/bin:$(STAGING_DIR_HOSTPKG)/usr/bin:$(PATH)
|
PATH="$(STAGING_DIR_HOSTPKG)/bin:$(STAGING_DIR_HOSTPKG)/usr/bin:$(PATH)"
|
||||||
|
|
||||||
define Package/intltool
|
define Package/intltool
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
|
|
Loading…
Reference in a new issue