浏览代码

Makefile.defs: set localbase for macports on macos

Daniel-Constantin Mierla 3 年之前
父节点
当前提交
584eabf7de
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/Makefile.defs

+ 5 - 0
src/Makefile.defs

@@ -524,7 +524,12 @@ ifeq ($(OS), darwin)
 	doc_dir = share/doc/$(MAIN_NAME)/
 	man_dir = man/
 	data_dir = share/$(MAIN_NAME)/
+	MACPORTS = $(shell which port 2>/dev/null)
+ifeq ($(MACPORTS),)
 	LOCALBASE ?= /usr/local
+else
+	LOCALBASE ?= /opt/local
+endif
 endif
 
 LOCALBASE ?= /usr/local