12345678910111213141516171819202122232425262728293031323334353637383940 |
- #! /bin/sh
- am_create_testdir=empty
- . test-init.sh
- : > Makefile.am
- cat > configure.ac << 'END'
- AC_INIT([symlink], [1.0])
- AC_CONFIG_AUX_DIR([subdir])
- AM_INIT_AUTOMAKE
- AC_CONFIG_FILES([Makefile])
- END
- $ACLOCAL
- AUTOMAKE_fails --add-missing
- grep '^configure\.ac:3: .*missing.*error while making link' stderr
- grep '^configure\.ac:3: .*install-sh.*error while making link' stderr
- test $(grep -c 'error while making link' stderr) -eq 2
- :
|