Fixed a constant string concatenation
[ntfs-3g.git] / autogen.sh
blob62e5439b6540ae0d9a6891cdd23ad86ed32bbd56
1 #!/bin/sh
2 # Run this to generate configure, Makefile.in's, etc
4 (autoreconf --version) < /dev/null > /dev/null 2>&1 || {
5 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
6 echo
7 echo "**Error**: You must have the GNU Build System (autoconf, automake, "
8 echo "libtool, etc) to update the ntfs-3g build system. Download the "
9 echo "appropriate packages for your distribution, or get the source "
10 echo "tar balls from ftp://ftp.gnu.org/pub/gnu/."
11 exit 1
13 echo
14 echo "**Error**: Your version of autoconf is too old (you need at least 2.57)"
15 echo "to update the ntfs-3g build system. Download the appropriate "
16 echo "updated package for your distribution, or get the source tar ball "
17 echo "from ftp://ftp.gnu.org/pub/gnu/."
18 exit 1
21 echo Running autoreconf --verbose --install --force
22 autoreconf --verbose --install --force