From eff4ecd0933e61ce77a08476c262890e6444c139 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Tue, 13 Sep 2016 19:16:10 -0400
Subject: [PATCH] fix disis build and clean instructions

---
 externals/Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/externals/Makefile b/externals/Makefile
index e6c0adc1c..91be851e2 100644
--- a/externals/Makefile
+++ b/externals/Makefile
@@ -449,8 +449,10 @@ cyclone_clean:
 # DISIS
 disis:
 ifneq ($(OS_NAME),windows)
+ifneq ($(OS_NAME),darwin)
 	cd $(externals_src)/disis/cwiid && aclocal && autoconf && \
 		./configure --with-python=python2 && make
+endif
 endif
 	make -C $(externals_src)/disis PD_PATH=$(pd_src) pdbinpath=$(pd_src)/src
 
@@ -460,7 +462,11 @@ disis_install:
 		install
 
 disis_clean:
+ifneq ($(OS_NAME),windows)
+ifneq ($(OS_NAME),darwin)
 	make -C $(externals_src)/disis/cwiid clean
+endif
+endif
 	make -C $(externals_src)/disis clean
 
 #------------------------------------------------------------------------------#
-- 
GitLab