libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.4.2-71-ge8db92c


From: Gary V. Vaughan
Subject: [SCM] GNU Libtool branch, master, updated. v2.4.2-71-ge8db92c
Date: Tue, 15 Nov 2011 07:09:19 +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 Libtool".

The branch, master has been updated
       via  e8db92c345b99acd9c6984a321fc241ed1d01d23 (commit)
      from  6beb2026137c9731f2734a5ef8f644ea23e91233 (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 e8db92c345b99acd9c6984a321fc241ed1d01d23
Author: Gary V. Vaughan <address@hidden>
Date:   Tue Nov 15 13:26:53 2011 +0700

    bootstrap: remove consumed options from the list to be processed.
    
    Fix a bug where processed bootstrap options were not removed
    from the queue, and eventually flagged as unknown in the
    pluggable option parser driver.
    * bootstrap (bootstrap_parse_options)
    (bootstrap_validate_options): Follow the pluggable option parser
    API correctly, and set func_run_hooks_result to the list of
    remaining unconsumed options.
    Reported by Roumen Petrov <address@hidden>
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 bootstrap |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bootstrap b/bootstrap
index 7e6fb4b..fce5a8f 100755
--- a/bootstrap
+++ b/bootstrap
@@ -5,7 +5,7 @@
 . `echo "$0" |${SED-sed} 's,[^/]*$,,'`"libltdl/config/extract-trace"
 
 # Set a version string for *this* script.
-scriptversion=2011-11-04.05; # UTC
+scriptversion=2011-11-15.06; # UTC
 
 # Bootstrap this package from checked-out sources.
 # Written by Gary V. Vaughan, 2010
@@ -2415,7 +2415,7 @@ bootstrap_parse_options ()
 
     # save modified positional parameters for caller
     func_quote_for_eval ${1+"$@"}
-    func_parse_options_result="$func_quote_for_eval_result"
+    func_run_hooks_result="$func_quote_for_eval_result"
 }
 func_add_hook func_parse_options bootstrap_parse_options
 
@@ -2437,7 +2437,7 @@ bootstrap_validate_options ()
 
     # Pass back the list of unconsumed options left.
     func_quote_for_eval ${1+"$@"}
-    func_validate_options_result="$func_quote_for_eval_result"
+    func_run_hooks_result="$func_quote_for_eval_result"
 }
 
 


hooks/post-receive
-- 
GNU Libtool



reply via email to

[Prev in Thread] Current Thread [Next in Thread]