forked from mirrors/nixpkgs
13 lines
437 B
Diff
13 lines
437 B
Diff
|
diff --git a/freestanding/Makefile b/freestanding/Makefile
|
||
|
index d535050..bb286bd 100644
|
||
|
--- a/freestanding/Makefile
|
||
|
+++ b/freestanding/Makefile
|
||
|
@@ -1,4 +1,6 @@
|
||
|
-PKG_CONFIG_PATH := $(shell opam config var prefix)/lib/pkgconfig
|
||
|
+ifneq (, $(shell command -v opam))
|
||
|
+PKG_CONFIG_PATH ?= $(shell opam var prefix)/lib/pkgconfig
|
||
|
+endif
|
||
|
|
||
|
EXISTS := $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config --exists ocaml-freestanding; echo $$?)
|
||
|
|