only build linux-atm if it's actually selected
SVN-Revision: 8968
This commit is contained in:
parent
b4142edc77
commit
059b0d3c54
1 changed files with 6 additions and 4 deletions
|
@ -53,19 +53,21 @@ define Build/Compile
|
|||
all install
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
ifneq ($(CONFIG_PACKAGE_linux-atm),)
|
||||
define Build/InstallDev
|
||||
mkdir -p $(STAGING_DIR)/usr/include
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \
|
||||
$(STAGING_DIR)/usr/include/
|
||||
mkdir -p $(STAGING_DIR)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \
|
||||
$(STAGING_DIR)/usr/lib/
|
||||
endef
|
||||
endef
|
||||
|
||||
define Build/UninstallDev
|
||||
define Build/UninstallDev
|
||||
rm -rf $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
|
||||
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
|
||||
endef
|
||||
endef
|
||||
endif
|
||||
|
||||
define Package/linux-atm/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
|
|
Loading…
Reference in a new issue