Skip to content

Commit

Permalink
fix(Makefile): no longer recursively set OS (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
dudymas authored Jan 19, 2023
1 parent d2c469b commit 5cb3faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ifeq ($(BUILD_HARNESS_TOP_LEVEL_MAKEFILE_GUARD),)
BUILD_HARNESS_TOP_LEVEL_MAKEFILE_GUARD := included

export OS ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
export OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
export BUILD_HARNESS_PATH ?= $(shell 'pwd')
export BUILD_HARNESS_EXTENSIONS_PATH ?= $(BUILD_HARNESS_PATH)/../build-harness-extensions
export BUILD_HARNESS_OS ?= $(OS)
Expand Down

0 comments on commit 5cb3faa

Please sign in to comment.