| Akim,
| I installed that version of autoconf and put your script in a file
| called "foo":
| 
| stenn@porkypine> sh foo
| configure: loading cache /dev/null
| configure: creating ./config.status
| config.status: creating file
| config.status: creating header.h
| BAR
| /* header.h.  Generated automatically by configure.  */
| #define FOO BAR
| stenn@porkypine>
| 
| How's that?

Goooood!  Thanks!  Hm, on second thought, I'd be even more reassured
with a actual list (I mean several items):

cat >configure.in <<EOF
AC_INIT
AC_CONFIG_FILES(file1 file2)
echo "@FOO@" >file1.in
echo "@FOO@" >file2.in
AC_SUBST(FOO, BAR)
AC_OUTPUT
EOF
autoconf
./configure
cat file1 file2

Thanks!

Reply via email to