Edit

kc3-lang/automake/tests/confdeps.test

Branch :

  • Show log

    Commit

  • Author : Akim Demaille
    Date : 2001-04-10 12:41:05
    Hash : 56a87bec
    Message : * distdir.am: Add a missing backslash.

  • tests/confdeps.test
  • #! /bin/sh
    
    # Make sure that config* files are properly regenerated.
    
    . $srcdir/defs || exit 1
    
    echo "FOO = foo"        > Makefile.am
    set -e
    
    echo "$me: Not generated by aclocal..."
    echo "Hello, universe!" > aclocal.m4
    $AUTOMAKE
    grep '^\$(ACLOCAL_M4):' Makefile.in && exit 1
    
    
    echo "$me: Generated by aclocal..."
    $ACLOCAL
    $AUTOMAKE
    grep '^\$(ACLOCAL_M4):' Makefile.in
    
    exit 0