[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-10-257-g500f6ca |
Date: |
Tue, 03 Mar 2009 19:55:38 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=500f6ca793385bfa3bc6516d5a63fcd8f28e10df
The branch, master has been updated
via 500f6ca793385bfa3bc6516d5a63fcd8f28e10df (commit)
from d22169ba7c9707dd8bed90f1f2abcaeb59107ef9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 500f6ca793385bfa3bc6516d5a63fcd8f28e10df
Author: Ralf Wildenhues <address@hidden>
Date: Tue Mar 3 20:44:42 2009 +0100
Fix `use constant' usage for MSYS Perl 5.6.0.
* automake.in (QUEUE_MESSAGE, QUEUE_CONF_FILE, QUEUE_LOCATION)
(QUEUE_STRING): Define using one `use constant' each; as perl
5.6.0 (on MSYS) does not understand `use constant { ... }'.
* THANKS: Update.
Report by Peter Rosin.
Signed-off-by: Ralf Wildenhues <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
THANKS | 1 +
automake.in | 10 ++++------
2 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/THANKS b/THANKS
index 240e343..aed4ad6 100644
--- a/THANKS
+++ b/THANKS
@@ -255,6 +255,7 @@ Peter Gavin address@hidden
Peter Mattis address@hidden
Peter Muir address@hidden
Peter O'Gorman address@hidden
+Peter Rosin address@hidden
Peter Seiderer address@hidden
Petter Reinholdtsen address@hidden
Phil Edwards address@hidden
diff --git a/automake.in b/automake.in
index 156dfba..67ee0d2 100755
--- a/automake.in
+++ b/automake.in
@@ -285,12 +285,10 @@ use constant COMPILE_ORDINARY => 2;
use constant INTERNAL => new Automake::Location;
# Serialization keys for message queues.
-use constant {
- QUEUE_MESSAGE => "msg",
- QUEUE_CONF_FILE => "conf file",
- QUEUE_LOCATION => "location",
- QUEUE_STRING => "string"
-};
+use constant QUEUE_MESSAGE => "msg";
+use constant QUEUE_CONF_FILE => "conf file";
+use constant QUEUE_LOCATION => "location";
+use constant QUEUE_STRING => "string";
## ---------------------------------- ##
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-10-257-g500f6ca,
Ralf Wildenhues <=