diff options
author | Tom Tromey <tromey@redhat.com> | 1997-02-24 05:31:31 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1997-02-24 05:31:31 +0000 |
commit | 4dca334f39eb966b8ed01f970c0c046e2dd57438 (patch) | |
tree | 7c3bd35840a1ddfd75e0946b967ea2f3926c0cec /aclocal.in | |
parent | 7279b80198ab5c7b9758fb1edb8e0461ede95dcc (diff) | |
download | automake-4dca334f39eb966b8ed01f970c0c046e2dd57438.tar.gz |
perl -w fixes
Diffstat (limited to 'aclocal.in')
-rw-r--r-- | aclocal.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.in b/aclocal.in index 582761284..15ffbd66b 100644 --- a/aclocal.in +++ b/aclocal.in @@ -269,7 +269,7 @@ sub scan_m4_files # Construct a new function that does the searching. We use a # function (instead of just evalling $search in the loop) so that # "die" is correctly and easily propagated if run. - local ($search, $expr, $key); + local ($search, $expr, $key) = ''; foreach $key (keys %map) { # EXPR is a regexp matching the name of the macro. |