This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
AC_CONFIG_FILES problem
- To: automake at gnu dot org
- Subject: AC_CONFIG_FILES problem
- From: Harlan Stenn <harlan at bali dot trilogy dot com>
- Date: Tue, 07 Nov 2000 23:55:24 -0600
- List-Id: Discussion list for automake <automake.gnu.org>
I'm generating a site-local file during configure that I use in
AC_CONFIG_FILES.
The filename is in the $GUTS variable, and I create the target via:
GUTS=$build_cpu-localname
echo stuff > $GUTS
AC_CONFIG_FILES([foo:foo-top.in:$GUTS:foo-bot.in])
The problem is the generated Makefile.in has $GUTS listed in
DIST_COMMON, which is a lose.
Also, automake detects:
harlan@bali> gmake
cd . && /bin/sh /home/harlan/src/foo/missing --run automake --foreign Makefile
configure.in: 74: required file `./$GUTS' not found
What's a good way to solve this problem?
I'm using a current CVS automake.
H