12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #!/bin/sh
- . test-init.sh
- cat >>configure.ac <<'END'
- AC_OUTPUT
- END
- cat > Makefile.am <<'END'
- FOO = \
- \
- \
- bar
- FOO +=
- FOO += baz
- .PHONY: test
- test:
- case '$(FOO)' in *\\*) exit 1;; *) exit 0;; esac
- END
- $ACLOCAL
- $AUTOMAKE
- grep '^ *FOO *=.*\\.' Makefile.in && exit 1
- $AUTOCONF
- ./configure
- $MAKE test
- :
|