From cf10eaf2855b9eb59fbf36f6c9090830b438b7e0 Mon Sep 17 00:00:00 2001 From: Isin Altinkaya Date: Sun, 7 May 2023 15:07:48 +0200 Subject: [PATCH] [build] Remove install -D to support osx build Remove -D from install. Regular install in macOS does not have -D. This causes the bioconda package to fail building the conda package for osx. -d in previous line should already create the dirs if needed, so -D is not necessary anyway. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ecdc2e7..d454360 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ bindir = $(exec_prefix)/bin INSTALL = install INSTALL_DIR = $(INSTALL) -dm0755 -INSTALL_PROGRAM = $(INSTALL) -Dm0755 +INSTALL_PROGRAM = $(INSTALL) -m0755 #$(info CFLAGS=$(CFLAGS)) #$(info CXXFLAGS=$(CXXFLAGS))