[build] add to autogen.sh hint listing reqd pkgs

add hint to autogen.sh listing packages required for build
  if ./autogen.sh fails
This commit is contained in:
Glenn Strauss 2020-09-05 23:54:32 -04:00
parent 140c0fb8f4
commit 37e04510c4
1 changed files with 7 additions and 0 deletions

View File

@ -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