Skip to content
Snippets Groups Projects
Commit 09c559e3 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #21496: daemon: warn if libtoolize or autoreconf are missing

parent 33af8ee7
Branches
Tags
No related merge requests found
#!/bin/bash
AUTORECONF=`which autoreconf`
if test -z $AUTORECONF; then
echo "*** No autoreconf found, please install it ***"
exit 1
fi
LIBTOOLIZE=`which libtoolize`
if test -z $LIBTOOLIZE; then
echo "*** No libtool found, please install it ***"
exit 1
fi
# Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565663
mkdir -p m4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment