From: Ansuel Smith Date: Wed, 7 Aug 2019 11:42:26 +0000 (+0200) Subject: intltool: fix broken compile on WSL X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=cea49c620dbd53e79d206d0eba7f0dbce92e2d2f;p=openwrt-packages.git 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 --- diff --git a/libs/intltool/Makefile b/libs/intltool/Makefile index 93952271a..244f59995 100644 --- a/libs/intltool/Makefile +++ b/libs/intltool/Makefile @@ -23,7 +23,7 @@ include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk 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 SECTION:=libs