1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 10:49:13 +02:00

The attached patch replaces $(1) install by $(if $(1), $(1), install) in the definition, in order to be able to specify an install rule, which is not always called install (example: trunk/package/ncurses/Makefile has rules called install.libs and install.data).

Then its possible to do this in ncurses Makefile:

define Build/Install
       $(call Build/Install/Default, install.libs install.data)
endef

This patch does not affect anything else, as if no parameter is given,
it will use install as before.

-Raphael

SVN-Revision: 19996
This commit is contained in:
Travis Kemen 2010-03-05 20:19:48 +00:00
parent cf7199f48b
commit e09067b221

View File

@ -122,7 +122,7 @@ define Build/Install/Default
$(MAKE_VARS) \ $(MAKE_VARS) \
$(MAKE) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \ $(MAKE) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \
$(MAKE_INSTALL_FLAGS) \ $(MAKE_INSTALL_FLAGS) \
$(1) install; $(if $(1), $(1), install);
endef endef
define Build/Dist/Default define Build/Dist/Default