]> sourceware.org Git - automake.git/commitdiff
Bug fix
authorTom Tromey <tromey@redhat.com>
Fri, 5 Jan 1996 18:00:04 +0000 (18:00 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 5 Jan 1996 18:00:04 +0000 (18:00 +0000)
ChangeLog
Makefile.in
automake.in

index dbc5faf2efb1fac3c8bdba943d1bf19d07d9ef40..d5562c480f73b60836d4867a8fd7b39dea7f05b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@ Fri Jan  5 10:31:19 1996  Tom Tromey  <tromey@cambric.colorado.edu>
 
        * 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  <tromey@cambric.colorado.edu>
 
index 004c05f4b42958eeee54b0ebdcc34aa71182af0b..acc3cad516686011a1028dcc085b9f3aaf31a8c4 100644 (file)
@@ -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 \
index 443b3c23cc5f296a0958717b6b12e4f0a2443c32..e1a3b799fe2ba3b5d0dc1cd2142b83b8d48e8b8b 100755 (executable)
@@ -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;
This page took 0.034297 seconds and 5 git commands to generate.