Skip to content

Commit

Permalink
Fix macos ping flags closes rokudev#28
Browse files Browse the repository at this point in the history
  • Loading branch information
GabLeRoux authored Jan 9, 2021
1 parent b6cc2e0 commit 3139c3f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions getting started/makefile/app.mk
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ endif
ifeq ($(HOST_OS),cygwin)
# This assumes that the Windows ping command is used, not cygwin's.
QUICK_PING_ARGS = -n 1 -w 1000
else ifeq ($(HOST_OS),macos)
# macos doesn't support -w flag
QUICK_PING_ARGS = -c 1
else # Linux
QUICK_PING_ARGS = -c 1 -w 1
endif
Expand Down

0 comments on commit 3139c3f

Please sign in to comment.