Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix which dtrace path check #3229

Merged
merged 1 commit into from
Jul 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to the Pony compiler and standard library will be documented

### Fixed

- Fix `which dtrace` path check ([PR #3229](https://github.com/ponylang/ponyc/pull/3229))

### Added

Expand Down
2 changes: 1 addition & 1 deletion Makefile-ponyc
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ define USE_CHECK
PONY_BUILD_DIR := $(PONY_BUILD_DIR)-pooltrack
else ifeq ($1,dtrace)
DTRACE ?= $(shell which dtrace)
ifeq (, $(DTRACE))
ifeq (, $$(DTRACE))
$$(error No dtrace compatible user application static probe generation tool found)
endif
ALL_CFLAGS += -DUSE_DYNAMIC_TRACE
Expand Down