From 526a4f8ec1331a611cd405debe84dc1fd0333ce6 Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Fri, 4 Jul 2014 03:53:53 +0200 Subject: [PATCH] Don't bundle launchpad on non-legacy Kindles --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 476507100..823fe9c41 100644 --- a/Makefile +++ b/Makefile @@ -101,10 +101,14 @@ kindleupdate: all ln -sf ../kindle/launchpad $(INSTALL_DIR)/ ln -sf ../../kindle/koreader.sh $(INSTALL_DIR)/koreader # create new package + # Don't bundle launchpad on touch devices.. +ifeq ($(TARGET), kindle-legacy) + KINDLE_LEGACY_LAUNCHER:=launchpad +endif cd $(INSTALL_DIR) && \ zip -9 -r \ ../koreader-kindle-$(MACHINE)-$(VERSION).zip \ - extensions koreader launchpad \ + extensions koreader $(KINDLE_LEGACY_LAUNCHER) \ -x "koreader/resources/fonts/*" \ "koreader/resources/icons/src/*" "koreader/spec/*" # @TODO write an installation script for KUAL (houqp)