Edit

kc3-lang/automake/configure.in

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1997-03-24 20:48:14
    Hash : 9c11ddf6
    Message : fixed bug in sanity check

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