We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51235d8 commit da7c002Copy full SHA for da7c002
posix.mak
@@ -986,7 +986,7 @@ $W/$(MAN_PAGE): $(DMD_DIR)/generated/$(MAN_PAGE) | ${STABLE_DMD}
986
mkdir -p $(dir $@)
987
cp $< $@
988
# CircleCi + nightlies.dlang.org might not have `man` installed
989
- if command -v man > /dev/null ; then \
+ if [ $(OS) != "osx" ] -a [ command -v man > /dev/null ] ; then \
990
${MAKE} -s -C $(DMD_DIR)/docs DMD=$(abspath $(STABLE_DMD)) DIFFABLE=$(DIFFABLE) preview > $(dir $@)dmd.txt; \
991
fi
992
0 commit comments