12345678910111213141516171819202122232425262728293031323334353637 |
- #! /bin/sh
- . test-init.sh
- cat > configure.ac <<END
- AC_INIT([$me], [1.0])
- AM_PATH_LISPDIR
- END
- $ACLOCAL
- $AUTOCONF
- ./configure --help >stdout || { cat stdout; exit 1; }
- cat stdout
- grep_configure_help --with-lispdir ' override.*lisp directory'
- grep_configure_help EMACS ' [eE]macs editor'
- grep_configure_help EMACSLOADPATH ' [eE]macs library search path'
- :
|