diff options
author | Phil Sutter <phil.sutter@viprinet.com> | 2011-01-07 18:21:45 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-10 10:45:26 +0100 |
commit | 75e3985003a09b36a30ea4e324f7c34fc2be0fdf (patch) | |
tree | 23c4cafe4ad98acec1e7ab5926ae9dd65b31d8c0 /package | |
parent | 7ed2902adda5173e9ea099bc1467b7fba33e2d84 (diff) |
iproute2: fix build of multiple subpackages
Instead of replacing INSTALL_{y,m} with the last enabled subpackage in
the list, append them.
Signed-off-by: Phil Sutter <phil.sutter@viprinet.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/iproute2/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/package/iproute2/Makefile b/package/iproute2/Makefile index 42ac1b11d..a672bd25e 100644 --- a/package/iproute2/Makefile +++ b/package/iproute2/Makefile @@ -46,14 +46,14 @@ CONFIGURE_FLAGS+= KERNEL_INCLUDE="${LINUX_DIR}/include" INSTALL_y:= INSTALL_m:= -INSTALL_${ADK_PACKAGE_IP}:= install-ip -INSTALL_${ADK_PACKAGE_TC}:= install-tc -INSTALL_${ADK_PACKAGE_TC_ATM}:= install-tc-atm -INSTALL_${ADK_PACKAGE_IFSTAT}:= install-ifstat -INSTALL_${ADK_PACKAGE_LNSTAT}:= install-lnstat -INSTALL_${ADK_PACKAGE_ROUTEL}:= install-routel -INSTALL_${ADK_PACKAGE_RTMON}:= install-rtmon -INSTALL_${ADK_PACKAGE_SS}:= install-ss +INSTALL_${ADK_PACKAGE_IP}+= install-ip +INSTALL_${ADK_PACKAGE_TC}+= install-tc +INSTALL_${ADK_PACKAGE_TC_ATM}+= install-tc-atm +INSTALL_${ADK_PACKAGE_IFSTAT}+= install-ifstat +INSTALL_${ADK_PACKAGE_LNSTAT}+= install-lnstat +INSTALL_${ADK_PACKAGE_ROUTEL}+= install-routel +INSTALL_${ADK_PACKAGE_RTMON}+= install-rtmon +INSTALL_${ADK_PACKAGE_SS}+= install-ss post-install: ${INSTALL_y} ${INSTALL_m} |