From d665bfc971dbaa719d24e99f077a4bab5051655e Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 5 Jan 1996 18:00:04 +0000 Subject: [PATCH] Bug fix --- ChangeLog | 1 + Makefile.in | 3 ++- automake.in | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index dbc5faf2..d5562c48 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ Fri Jan 5 10:31:19 1996 Tom Tromey * automake.in: Cleanups from François Pinard to avoid $#. (require_argument): Fixed sense of test. + (set_strictness): Bug fix. Thu Jan 4 21:21:29 1996 Tom Tromey diff --git a/Makefile.in b/Makefile.in index 004c05f4..acc3cad5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -206,13 +206,14 @@ distclean-tags: rm -f TAGS ID maintainer-clean-tags: + distdir = $(PACKAGE)-$(VERSION) dist: $(DISTFILES) rm -rf $(distdir) mkdir $(distdir) distdir=`cd $(distdir) && pwd` \ && cd $(srcdir) \ - && automake --include-deps --output-dir=$$distdir --strictness=normal + && automake --include-deps --output-dir=$$distdir --strictness=gnits @for file in $(DISTFILES); do \ test -f $(distdir)/$$file \ || ln $(srcdir)/$$file $(distdir)/$$file \ diff --git a/automake.in b/automake.in index 443b3c23..e1a3b799 100755 --- a/automake.in +++ b/automake.in @@ -1752,7 +1752,7 @@ sub push_phony_cleaners # Set strictness. sub set_strictness { - $strictness_name = @_; + $strictness_name = $_[0]; if ($strictness_name eq 'gnu') { $strictness = $GNU; -- 2.43.5