This change fixes another VPATH build bug, where the vcl.tmp

target forced a rebuild of stamp-vcl in the build tree (and
hence regeneration of m4/ltversion.m4, thus an automake driven
rebootstrap that doesn't know about $fakes) requiring a fresh
./bootstrap after every cvs/tla update:

* Makefile.am (vcl.tmp): Removed.
(stamp-vcl): Adopt former vcl.tmp target rules.
This commit is contained in:
Gary V. Vaughan 2004-07-27 12:51:31 +00:00
parent 54fafb6fa7
commit b0cf8fdd16
3 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,14 @@
2004-07-27 Gary V. Vaughan <gary@gnu.org>
This change fixes another VPATH build bug, where the vcl.tmp
target forced a rebuild of stamp-vcl in the build tree (and
hence regeneration of m4/ltversion.m4, thus an automake driven
rebootstrap that doesn't know about $fakes) requiring a fresh
./bootstrap after every cvs/tla update:
* Makefile.am (vcl.tmp): Removed.
(stamp-vcl): Adopt former vcl.tmp target rules.
2004-07-25 Gary V. Vaughan <gary@gnu.org>
* ltmain.in: Make sure that dependency libraries of -dlpreopened

View File

@ -67,8 +67,7 @@ bin_SCRIPTS = libtool libtoolize
## 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:
stamp-vcl: $(top_srcdir)/ChangeLog
@dir=.; test -f $$dir/stamp-vcl || dir=$(srcdir); \
set `$(MKSTAMP) < $(top_srcdir)/ChangeLog`; \
echo "$$1" > vcl.tmp; \

View File

@ -24,7 +24,7 @@ AC_PREREQ(2.58) ## We use AS_HELP_STRING
## ------------------------ ##
## Autoconf initialisation. ##
## ------------------------ ##
AC_INIT([libtool], [1.5b], [bug-libtool@gnu.org])
AC_INIT([libtool], [1.5a], [bug-libtool@gnu.org])
AC_CONFIG_HEADERS([config.h:config-h.in])
AC_CONFIG_SRCDIR([ltmain.in])
AC_CONFIG_AUX_DIR([config])