This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: configure-generated *.in's
- From: Bruce Korb <bkorb at veritas dot com>
- To: autoconf at gnu dot org,jtc at acorntoolworks dot com
- Cc: automake at gnu dot org
- Date: Fri, 31 Dec 2004 15:24:21 -0800
- Subject: Re: configure-generated *.in's
- Organization: Veritas Software
- References: <87zmzvqeua.fsf@orac.acorntoolworks.com><20041231070651.GF15698@matsrv.math.cas.cz><87mzvu3wm8.fsf@orac.acorntoolworks.com>
- Reply-to: bkorb at veritas dot com
Hi Stepan,
The solution is to not list the file in the list of files to be configured.
Instead, in your Makefile.am:
mumble-sh.in : $(mumble_PREDECESSORS)
create-mumble-sh-in
mumble.sh : mumble-sh.in
$(SHELL) $(top_builddir)/config.status --file mumble.sh:mumble-sh.in
Someone having been kind enough to have given me that hint..... :-)