Skip to content

Commit 6a94b90

Browse files
authored
Merge pull request #2150 from wilzbach/man-osx
Disable building the man preview on OSX
2 parents 4add4e3 + da7c002 commit 6a94b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posix.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ $W/$(MAN_PAGE): $(DMD_DIR)/generated/$(MAN_PAGE) | ${STABLE_DMD}
986986
mkdir -p $(dir $@)
987987
cp $< $@
988988
# CircleCi + nightlies.dlang.org might not have `man` installed
989-
if command -v man > /dev/null ; then \
989+
if [ $(OS) != "osx" ] -a [ command -v man > /dev/null ] ; then \
990990
${MAKE} -s -C $(DMD_DIR)/docs DMD=$(abspath $(STABLE_DMD)) DIFFABLE=$(DIFFABLE) preview > $(dir $@)dmd.txt; \
991991
fi
992992

0 commit comments

Comments
 (0)