quoting fix from Per
[automake.git] / configure.in
bloba2d436aaad2ef09d7693d5e8517e468572687fec
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(automake.in)
4 AM_INIT_AUTOMAKE(automake, 1.1n)
6 # Find an appropriate tar for use in "dist" targets.  A "best guess"
7 # is good enough -- if we can't find GNU tar, we don't really care.
8 AC_CHECK_PROGS(TAR, gnutar gtar tar)
9 AC_PATH_PROG(PERL, perl)
10 if test -z "$PERL"; then
11    echo "fatal error: perl not found" 1>&2
12    exit 1
15 AC_OUTPUT([Makefile automake aclocal m4/Makefile tests/Makefile],
16 [chmod +x automake aclocal])