Skip to content

Commit

Permalink
package: replace $(STAGING_DIR)/host with $(STAGING_DIR_HOSTPKG)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
neocturne committed Jan 10, 2017
1 parent 7480d33 commit 77beaf2
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions package/libs/gettext-full/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions package/libs/gettext/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ define Host/Compile
endef

define Host/Install
$(INSTALL_DIR) $(STAGING_DIR)/host/include
$(INSTALL_DATA) ./src/include/libintl.h $(STAGING_DIR)/host/include/
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/include
$(INSTALL_DATA) ./src/include/libintl.h $(STAGING_DIR_HOSTPKG)/include/

$(INSTALL_DIR) $(STAGING_DIR)/host/share/aclocal
$(INSTALL_DATA) ./src/m4/* $(STAGING_DIR)/host/share/aclocal/
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/share/aclocal
$(INSTALL_DATA) ./src/m4/* $(STAGING_DIR_HOSTPKG)/share/aclocal/
endef

define Package/libintl/install
Expand Down
12 changes: 6 additions & 6 deletions package/libs/libiconv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ define Host/Compile
endef

define Host/Install
$(INSTALL_DIR) $(STAGING_DIR)/host/lib
$(INSTALL_DATA) $(HOST_BUILD_DIR)/libiconv.a $(STAGING_DIR)/host/lib/
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/lib
$(INSTALL_DATA) $(HOST_BUILD_DIR)/libiconv.a $(STAGING_DIR_HOSTPKG)/lib/

$(INSTALL_DIR) $(STAGING_DIR)/host/include
$(INSTALL_DATA) ./src/include/iconv.h $(STAGING_DIR)/host/include/
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/include
$(INSTALL_DATA) ./src/include/iconv.h $(STAGING_DIR_HOSTPKG)/include/

$(INSTALL_DIR) $(STAGING_DIR)/host/share/aclocal
$(INSTALL_DATA) ./src/m4/* $(STAGING_DIR)/host/share/aclocal/
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/share/aclocal
$(INSTALL_DATA) ./src/m4/* $(STAGING_DIR_HOSTPKG)/share/aclocal/
endef

$(eval $(call HostBuild))
Expand Down
2 changes: 1 addition & 1 deletion package/libs/libtool/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PKG_BUILD_PARALLEL:=0

include $(INCLUDE_DIR)/package.mk

CONFIGURE_PREFIX=$(STAGING_DIR)/host
CONFIGURE_PREFIX=$(STAGING_DIR_HOSTPKG)
export GLOBAL_LIBDIR=$(STAGING_DIR)/usr/lib

define Package/libltdl
Expand Down
2 changes: 1 addition & 1 deletion package/libs/ncurses/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ define Build/InstallDev
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ncursesw6-config $(2)/bin/
$(SED) 's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' -e 's/$$$$INCS //g' \
$(2)/bin/ncursesw6-config
ln -sf $(STAGING_DIR)/host/bin/ncursesw6-config $(1)/usr/bin/ncursesw6-config
ln -sf $(STAGING_DIR_HOSTPKG)/bin/ncursesw6-config $(1)/usr/bin/ncursesw6-config
endef

define Host/Compile
Expand Down
6 changes: 3 additions & 3 deletions package/utils/bsdiff/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ define Package/bspatch/install
endef

define Host/Install
$(INSTALL_DIR) $(STAGING_DIR)/host/bin/
$(MAKE) -C $(HOST_BUILD_DIR) PREFIX=$(STAGING_DIR)/host/ install
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/bin/
$(MAKE) -C $(HOST_BUILD_DIR) PREFIX=$(STAGING_DIR_HOSTPKG)/ install
endef

define Host/Compile
Expand All @@ -70,7 +70,7 @@ define Host/Compile
endef

define Host/Install
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bsdiff $(STAGING_DIR)/host/bin/
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bsdiff $(STAGING_DIR_HOSTPKG)/bin/
endef

$(eval $(call HostBuild))
Expand Down
6 changes: 3 additions & 3 deletions package/utils/bzip2/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ HOST_MAKE_FLAGS+= \
all

HOST_CONFIGURE_ARGS+= \
--prefix=$(STAGING_DIR)/host
--prefix=$(STAGING_DIR_HOSTPKG)

define Host/Install
$(INSTALL_DIR) $(STAGING_DIR)/host/bin/
$(MAKE) -C $(HOST_BUILD_DIR) PREFIX=$(STAGING_DIR)/host/ install
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/bin/
$(MAKE) -C $(HOST_BUILD_DIR) PREFIX=$(STAGING_DIR_HOSTPKG)/ install
endef

$(eval $(call HostBuild))
Expand Down
4 changes: 2 additions & 2 deletions package/utils/lua/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ define Build/Compile
endef

define Host/Configure
$(SED) 's,"/usr/local/","$(STAGING_DIR)/host/",' $(HOST_BUILD_DIR)/src/luaconf.h
$(SED) 's,"/usr/local/","$(STAGING_DIR_HOSTPKG)/",' $(HOST_BUILD_DIR)/src/luaconf.h
endef

ifeq ($(HOST_OS),Darwin)
Expand All @@ -132,7 +132,7 @@ endef

define Host/Install
$(MAKE) -C $(HOST_BUILD_DIR) \
INSTALL_TOP="$(STAGING_DIR)/host" \
INSTALL_TOP="$(STAGING_DIR_HOSTPKG)" \
install
endef

Expand Down

0 comments on commit 77beaf2

Please sign in to comment.