diff options
| -rwxr-xr-x | autogen.sh | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh index d00102683..dca5308f2 100755 --- a/autogen.sh +++ b/autogen.sh @@ -60,6 +60,12 @@ if [ $? -ne 0 ]; then    MISSING="$MISSING pkg-config"  fi +# Check for tar +env tar --version > /dev/null 2>&1 +if [ $? -ne 0 ]; then +  MISSING="$MISSING tar" +fi +  ## If dependencies are missing, warn the user and abort  if [ "x$MISSING" != "x" ]; then    echo "Aborting."  | 
