From 822991272e54189d2d5d3afed9a2c80a731f278b Mon Sep 17 00:00:00 2001 From: William Desportes Date: Tue, 18 Oct 2022 15:15:03 +0200 Subject: [PATCH] Add alpine linux apk add --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index a28304e..d52c6ad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -175,7 +175,8 @@ impl fmt::Display for Error { "Try `brew install pkg-config` if you have Homebrew.\n" } else if cfg!(unix) { "Try `apt install pkg-config`, or `yum install pkg-config`,\n\ - or `pkg install pkg-config` depending on your distribution.\n" + or `pkg install pkg-config`, or `apk add pkgconfig` \ + depending on your distribution.\n" } else { "" // There's no easy fix for Windows users };