Browse Source

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>
lilik-openwrt-22.03
Ansuel Smith 5 years ago
parent
commit
cea49c620d
No known key found for this signature in database GPG Key ID: AC001D09ADBFEAD7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libs/intltool/Makefile

+ 1
- 1
libs/intltool/Makefile View File

@ -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


Loading…
Cancel
Save