Edit

kc3-lang/automake/tests/req.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-10-06 19:24:34
    Hash : 35bc95c9
    Message : Some aclocal bug fixes

  • tests/req.test
  • #! /bin/sh
    
    # Test to make sure macro used in m4 file is included.
    
    . $srcdir/defs || exit 1
    
    echo AM_INIT_GUILE_MODULE > configure.in
    
    cat > acinclude.m4 << 'END'
    AC_DEFUN([AM_INIT_GUILE_MODULE],[
    . $srcdir/../GUILE-VERSION
    AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
    AC_CONFIG_AUX_DIR(..)
    module=[$1]
    AC_SUBST(module)])
    END
    
    $ACLOCAL || exit 1
    
    grep 'DEFUN.*INIT_AUTOMAKE' aclocal.m4