From 95fe512a9e24b941efc3ff30b174a730899e3c04 Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Sun, 23 Oct 2016 02:11:45 -0500 Subject: [PATCH] update zip task in Makefile to support both Numix and Numix-Frost (cherry picked from commit b7e9781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5c1ca43..9632c43 100755 --- a/Makefile +++ b/Makefile @@ -45,8 +45,8 @@ changes: zip: all mkdir $(ROOT_DIR)/dist - $(UTILS) install $(ROOT_DIR)/dist/Numix - cd $(ROOT_DIR)/dist && zip --symlinks -rq Numix Numix + $(UTILS) install $(ROOT_DIR)/dist/$$(basename $(ROOT_DIR)) + cd $(ROOT_DIR)/dist && zip --symlinks -rq $$(basename $(ROOT_DIR)) $$(basename $(ROOT_DIR)) .PHONY: all