]> sourceware.org Git - automake.git/commitdiff
* automake.in (file_contents_internal): Fix the relationship
authorAlexandre Duret-Lutz <adl@gnu.org>
Tue, 8 Oct 2002 22:23:49 +0000 (22:23 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Tue, 8 Oct 2002 22:23:49 +0000 (22:23 +0000)
regex flags, don't use `m'.

ChangeLog
automake.in

index 09dd26c487743c208bc08109b4f297c2f2beabf3..6719ac821dbb7f37971e682d8d4e1f50fce1e2de 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-10-08  Alexandre Duret-Lutz  <adl@gnu.org>
 
+       * automake.in (file_contents_internal): Fix the relationship
+       regex flags, don't use `m'.
+
        For Debian Bug#162583:
        * automake.in (file_contents_internal): Simplify regex to
        separate relationship from actions in rules.
index be97793ccab24a474d6a2ebe727843d724275368..2d2c16e8ae9364e87f6e0a900329c5359c436447 100755 (executable)
@@ -8164,7 +8164,7 @@ sub file_contents_internal ($$$%)
          # `new-line tab" not preceded by backslash (continuation
          # line).
          my $paragraph = $_;
-         /^(.*?)(?:(?<!\\)\n(\t.*))?$/som;
+         /^(.*?)(?:(?<!\\)\n(\t.*))?$/s;
          my ($relationship, $actions) = ($1, $2 || '');
 
          # Separate targets from dependencies: the first colon.
This page took 0.037576 seconds and 5 git commands to generate.