add workaround for the jamvm sdk compile - the sdk does not understand DEPENDS:=@!mips yet

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6863 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-04-04 15:13:56 +00:00
parent 0b6c2065ca
commit b4f4bad9f3

View File

@ -48,11 +48,13 @@ define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) all
endef
define Package/jamvm/install
ifneq ($(ARCH),mips)
define Package/jamvm/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/jamvm $(1)/usr/bin/
$(INSTALL_DIR) $(1)/usr/share/jamvm
$(INSTALL_DATA) $(PKG_BUILD_DIR)/lib/classes.zip $(1)/usr/share/jamvm/
endef
endef
endif
$(eval $(call BuildPackage,jamvm))