From 37e04510c42e4b117d5c0abd100be4841044e671 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sat, 5 Sep 2020 23:54:32 -0400 Subject: [build] add to autogen.sh hint listing reqd pkgs add hint to autogen.sh listing packages required for build if ./autogen.sh fails --- autogen.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 7377a64a..6a2ecd8b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,13 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. +function errtrace { + echo 1>&2 \ + "build requires autoconf automake libtool m4 pcre pcre-devel pkg-config" +} + +trap errtrace ERR + set -e if [ ! -f configure.ac -o ! -f COPYING ]; then -- cgit v1.2.1