]> sourceware.org Git - automake.git/commitdiff
2001-05-22 Alexandre Duret-Lutz <duret_g@epita.fr>
authorTom Tromey <tromey@redhat.com>
Wed, 23 May 2001 01:05:47 +0000 (01:05 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 23 May 2001 01:05:47 +0000 (01:05 +0000)
* automake.in (ASSIGNMENT_PATTERN): Forbid : and + in variable names.

ChangeLog
automake.in

index 51dae1f6a1c64f5525cd93759cda51cc909dcbea..a576d51d851c43f22c0f8ecfad5ab9c1008f6df9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-05-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * automake.in (ASSIGNMENT_PATTERN): Forbid : and + in variable names.
+
 2001-05-21  Akim Demaille  <akim@epita.fr>
 
        * automake.texi (Macros): Explain the ``AC_PROG_LEX invoked
index 55a16cca710f45d3ec1bbe4ab0c3092dfca9c1a5..b87f48e832e76d428806c8b297de94da11cdda0a 100755 (executable)
@@ -124,7 +124,7 @@ my $SUFFIX_RULE_PATTERN = '^\.([a-zA-Z0-9]+)\.([a-zA-Z0-9]+)$';
 # leading tabs here then we need to make the reader smarter, because
 # otherwise it will think rules like `foo=bar; \' are errors.
 my $MACRO_PATTERN = '^[A-Za-z0-9_@]+$';
-my $ASSIGNMENT_PATTERN = '^ *([^ \t=]*)\s*([:+]?)=\s*(.*)$';
+my $ASSIGNMENT_PATTERN = '^ *([^ \t=:+]*)\s*([:+]?)=\s*(.*)$';
 # This pattern recognizes a Gnits version id and sets $1 if the
 # release is an alpha release.  We also allow a suffix which can be
 # used to extend the version number with a "fork" identifier.
This page took 0.037019 seconds and 5 git commands to generate.