diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-01-10 18:43:57 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-01-10 22:15:37 +0100 |
commit | 77beaf2ec91bba0a0202ea63877ed3b399effabf (patch) | |
tree | cf7f16585546f96a575a1e4630ddd963dcc1f623 /package/libs/gettext-full | |
parent | 7480d3309cbe40378da48c3b6decc4ba2b1fc3d5 (diff) | |
download | upstream-77beaf2ec91bba0a0202ea63877ed3b399effabf.tar.gz upstream-77beaf2ec91bba0a0202ea63877ed3b399effabf.tar.bz2 upstream-77beaf2ec91bba0a0202ea63877ed3b399effabf.zip |
package: replace $(STAGING_DIR)/host with $(STAGING_DIR_HOSTPKG)
Cleanup to prepare for changing STAGING_DIR_HOSTPKG. The actual change of
STAGING_DIR_HOSTPKG (i.e., moving the host packages back into a common, not
target-specific directory) will be done after the first LEDE release, but
the cleanup will also be useful for projects like Gluon.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Diffstat (limited to 'package/libs/gettext-full')
-rw-r--r-- | package/libs/gettext-full/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libs/gettext-full/Makefile b/package/libs/gettext-full/Makefile index 64d27609c3..d293e30eac 100644 --- a/package/libs/gettext-full/Makefile +++ b/package/libs/gettext-full/Makefile @@ -37,7 +37,7 @@ endef TARGET_CFLAGS += $(FPIC) ifneq ($(HOST_OS),Linux) - TARGET_CFLAGS += -I$(STAGING_DIR)/host/include + TARGET_CFLAGS += -I$(STAGING_DIR_HOSTPKG)/include endif ifdef CONFIG_USE_MUSL TARGET_CFLAGS += -D__UCLIBC__ @@ -83,7 +83,7 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/usr/share/aclocal $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/aclocal/* $(1)/usr/share/aclocal/ - $(SED) '/read dummy/d' $(STAGING_DIR)/host/bin/gettextize + $(SED) '/read dummy/d' $(STAGING_DIR_HOSTPKG)/bin/gettextize endef define Package/libintl-full/install |