* bootstrap: Remove vcl.tmp, otherwise it can interfere with make.

* Makefile.am (vcl.tmp): Move comment out of multi-line command,
as this rule is called from bootstrap as if it were a Makefile.
This commit is contained in:
Gary V. Vaughan 2004-02-06 18:15:15 +00:00
parent 4a9ead32fb
commit e0d17ab949
3 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,9 @@
2004-02-06 Gary V. Vaughan <gary@gnu.org>
* bootstrap: Remove vcl.tmp, otherwise it can interfere with make.
* Makefile.am (vcl.tmp): Move comment out of multi-line command,
as this rule is called from bootstrap as if it were a Makefile.
* m4/ltversion.in: New file to capture what version number macros
are being used.
* Makefile.am (m4/ltversion.m4): New rule to create it from

View File

@ -59,6 +59,10 @@ $(top_srcdir)/m4/ltversion.m4: $(top_srcdir)/m4/ltversion.in stamp-vcl
# The standalone libtool script, and the libtool distributor.
bin_SCRIPTS = libtool libtoolize
## If mkstamp does not match $(srcdir)/stamp-vcl, we still put the new one
## in the current dir, incase $(srcdir) is not writable. The dir selection
## at the top of this rule takes care of prefering the right one on
## subsequent runs.
MKSTAMP = $(SHELL) $(top_srcdir)/config/mkstamp
stamp-vcl: vcl.tmp $(top_srcdir)/ChangeLog
vcl.tmp:
@ -66,10 +70,6 @@ vcl.tmp:
set `$(MKSTAMP) < $(top_srcdir)/ChangeLog`; \
echo "$$1" > vcl.tmp; \
cmp -s vcl.tmp $$dir/stamp-vcl \
## If mkstamp does not match $(srcdir)/stamp-vcl, we still put the new one
## in the current dir, incase $(srcdir) is not writable. The dir selection
## at the top of this rule takes care of prefering the right one on
## subsequent runs.
|| (echo "Updating stamp-vcl"; cp vcl.tmp ./stamp-vcl)
-@rm -f vcl.tmp

View File

@ -67,6 +67,6 @@ for file in $fakes; do
done
# These files con cause an infinite configure loop if left behind.
rm -f Makefile libltdl/Makefile libtool
rm -f Makefile libltdl/Makefile libtool vcl.tmp
exit 0