1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'EOF'
- lisp_LISP = foo.el
- AM_ELCFLAGS = __am_elcflags__
- EOF
- cat >> configure.ac << 'EOF'
- AM_PATH_LISPDIR
- AC_OUTPUT
- EOF
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE --add-missing
- ./configure EMACS='echo >$@' --with-lispdir="$(pwd)/unused"
- : > foo.el
- run_make ELCFLAGS='__usr_elcflags__'
- grep '__am_elcflags__.*__usr_elcflags__' foo.elc
- :
|