+Tue Dec 3 10:40:48 1996 Tom Tromey <tromey@cygnus.com>
+
+ * progs.am: Use @LIBTOOL@, not $(LIBTOOL).
+
+ * automake.in (am_install_var): If -ltlibs passed, substitute
+ @LIBTOOL@.
+
Mon Dec 2 12:13:27 1996 Tom Tromey <tromey@cygnus.com>
* Released 1.1i.
cvs-diff:
thisver=`echo "Release-$(VERSION)" | sed 's/\./-/g'`; \
- prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
+ if test -z "$$OLDVERSION"; then \
+ prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
+ else prevno="$$OLDVERSION"; fi; \
prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \
cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \
> $(PACKAGE)-$$prevno-$(VERSION).diff
cvs-diff:
thisver=`echo "Release-$(VERSION)" | sed 's/\./-/g'`; \
- prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
+ if test -z "$$OLDVERSION"; then \
+ prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
+ else prevno="$$OLDVERSION"; fi; \
prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \
cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \
> $(PACKAGE)-$$prevno-$(VERSION).diff
local (@args) = @_;
local ($do_clean, $do_ltlibs) = (0, 0);
+ local ($more_xform) = '';
while (@args)
{
if ($args[0] eq '-clean')
if ($args[0] eq '-ltlibs')
{
$do_ltlibs = 1;
+ if ($seen_libtool)
+ {
+ # Note that we explicitly set the mode, to avoid
+ # lossage if the program name isn't what we expect.
+ $more_xform = 's/\@LIBTOOL\@/$(LIBTOOL) --mode=install/;';
+ }
+ else
+ {
+ $more_xform = 's/\@LIBTOOL\@//;';
+ }
}
elsif ($args[0] !~ /^-/)
{
else
{
$output_rules .=
- &file_contents_with_transform ('s/\@DIR\@/' . $X . '/go',
+ &file_contents_with_transform ('s/\@DIR\@/' . $X . '/g;'
+ . $more_xform,
$file);
}
#define PACKAGE "$PACKAGE"
EOF
-VERSION=1.1i
+VERSION=1.1j
cat >> confdefs.h <<EOF
#define VERSION "$VERSION"
dnl Process this file with autoconf to produce a configure script.
AC_INIT(automake.in)
-AM_INIT_AUTOMAKE(automake, 1.1i)
+AM_INIT_AUTOMAKE(automake, 1.1j)
AC_PATH_PROG(PERL, perl)
if test -z "$PERL"; then
cvs-diff:
thisver=`echo "Release-$(VERSION)" | sed 's/\./-/g'`; \
- prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
+ if test -z "$$OLDVERSION"; then \
+ prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
+ else prevno="$$OLDVERSION"; fi; \
prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \
cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \
> $(PACKAGE)-$$prevno-$(VERSION).diff
## a real libtool, its behaviour is identical to normal INSTALL_PROGRAM.
## Note that we explicitly set the libtool mode. This avoids any lossage
## if the program doesn't have a name that libtool expects.
- $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`; \
+ @LIBTOOL@ $(INSTALL_PROGRAM) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`; \
else :; fi; \
done
## a real libtool, its behaviour is identical to normal INSTALL_PROGRAM.
## Note that we explicitly set the libtool mode. This avoids any lossage
## if the program doesn't have a name that libtool expects.
- $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`; \
+ @LIBTOOL@ $(INSTALL_PROGRAM) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`; \
else :; fi; \
done
@set UPDATED 28 November 1996
-@set EDITION 1.1i
-@set VERSION 1.1i
+@set EDITION 1.1j
+@set VERSION 1.1j