From b74621017cbd29b3d8fa50f49e24bf7b01d87e53 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 4 Apr 2007 15:13:56 +0000 Subject: [PATCH] add workaround for the jamvm sdk compile - the sdk does not understand DEPENDS:=@!mips yet SVN-Revision: 6863 --- lang/jamvm/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lang/jamvm/Makefile b/lang/jamvm/Makefile index 23e5f21ba3..7acd9fc72e 100644 --- a/lang/jamvm/Makefile +++ b/lang/jamvm/Makefile @@ -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)) -- 2.30.2