Skip to content

Commit

Permalink
[build] Remove install -D to support osx build
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
isinaltinkaya committed May 7, 2023
1 parent b7eb654 commit cf10eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit cf10eaf

Please sign in to comment.