Skip to content

Commit

Permalink
Issue #264: Properly checking of pkg-config
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevaev committed Aug 17, 2024
1 parent de8cb85 commit 53ec87b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ _LINTERS_IMAGE ?= ustreamer-linters


# =====
ifeq (, $(shell which pkg-config))
$(error "No pkg-config found in $(PATH)")
ifeq (__not_found__,$(shell which pkg-config 2>/dev/null || echo "__not_found__"))
$(error "No pkg-config found in $(PATH)")
endif


Expand Down

0 comments on commit 53ec87b

Please sign in to comment.