Skip to content

Commit

Permalink
In Makefiles, use $(shell which ...) not $(which ...)
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jul 17, 2014
1 parent 5f80c83 commit 4e92487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ endif
endif

ifeq ($(OS), Linux)
ifeq ($(which patchelf),)
ifeq ($(shell which patchelf),)
STAGE1_DEPS += patchelf
PATCHELF=$(build_bindir)/patchelf
else
Expand Down

0 comments on commit 4e92487

Please sign in to comment.