From 029a61282512b633d8210de9101510a8284d4923 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Tue, 12 Dec 2017 11:55:40 +0100 Subject: Fixed Windows support. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0088519..118a80b 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,9 @@ release: package: clean vendor build @mkdir -p $(PACKAGE_DIR)/$(TARGET) @cp -a $(LOCAL_BINDIR)/*gdb$(EXT) $(PACKAGE_DIR)/$(TARGET) +ifneq ($(GOOS), windows) @cp -r $(ROOT_SRCDIR)/conf.d $(ROOT_SRCDIR)/scripts $(PACKAGE_DIR)/$(TARGET) +endif cd $(PACKAGE_DIR) && zip -r $(ROOT_SRCDIR)/$(PACKAGE_ZIPFILE) ./$(TARGET) .PHONY: package-all -- cgit 1.2.3-korg