Edit

kc3-lang/automake/tests/vpath.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-10-04 02:58:19
    Hash : 98eb9e29
    Message : Allow all variables to be overridden

  • tests/vpath.test
  • #! /bin/sh
    
    # Test to make sure VPATH can be overridden.
    # Report from Anthony Green.
    
    . $srcdir/defs || exit 1
    
    cat > Makefile.am << 'END'
    VPATH = zardoz
    END
    
    $AUTOMAKE || exit 1
    
    grep 'VPATH.*@srcdir@' Makefile.in && exit 1
    exit 0