Skip to content

Commit

Permalink
[mono] Fix HelloWorld sample for OSX (#42916)
Browse files Browse the repository at this point in the history
OSX `uname` doesn't have a `-o`
  • Loading branch information
lambdageek authored Oct 1, 2020
1 parent 334bd84 commit 746ca52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/netcore/sample/HelloWorld/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DOTNET_Q_ARGS=--nologo -v:q -consoleloggerparameters:NoSummary
MONO_CONFIG=Release
MONO_ARCH=x64

OS := $(shell uname -o)
OS := $(shell uname -s)
ifeq ($(OS),Darwin)
TARGET_OS=osx
else
Expand Down

0 comments on commit 746ca52

Please sign in to comment.