From 4abe43ce9e8c0f3885ffb667af7e4224a7cd2d47 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Fri, 4 May 2012 23:29:00 -0700 Subject: [PATCH] check for pkg-config in bootstrap --- bootstrap | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bootstrap b/bootstrap index f5f9ebe0..61de66ee 100755 --- a/bootstrap +++ b/bootstrap @@ -21,6 +21,13 @@ then exit 1 fi +which pkg-config +if ! test $? -eq 0 +then + echo "error, install pkg-config" + exit 1 +fi + touch configure.ac touch NEWS touch AUTHORS