1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_CONFIG_FILES([sub/Makefile])
- AC_OUTPUT
- END
- cat > Makefile.am <<'END'
- SUBDIRS = sub
- END
- mkdir sub
- : > sub/Makefile.am
- $ACLOCAL
- $AUTOMAKE
- $AUTOCONF
- ./configure
- $MAKE
- do_check ()
- {
- run_make -O
- test $(grep -c "/missing " stdout) -eq 1
- }
- rm -f Makefile.in
- do_check
- rm -f sub/Makefile.in
- do_check
- $sleep
- touch Makefile.am
- do_check
- touch sub/Makefile.am
- do_check
- :
|