Skip to content

Commit da7c002

Browse files
committed
Disable building the man preview on OSX
1 parent 51235d8 commit da7c002

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)