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.3-43-gcbeefbc


From: Gary V. Vaughan
Subject: [SCM] GNU Libtool branch, master, updated. v2.4.3-43-gcbeefbc
Date: Sat, 29 Nov 2014 00:08: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  cbeefbc8f0ac527f7c7f14cbc8b3fc9de0ff2b77 (commit)
       via  16bcf1884998a56963d81c796d138b0107fffce7 (commit)
      from  bb7cef9d97d6fdb2d8ee5350a82fb39b0ff8513d (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 cbeefbc8f0ac527f7c7f14cbc8b3fc9de0ff2b77
Author: Tijl Coosemans <address@hidden>
Date:   Fri Nov 28 16:46:56 2014 +0000

    libtoolize: no need for umask 0 now that copying does not use tar.
    
    The umask calls seem to be left over as a workaround for several
    releases ago when libtoolize copied libltdl sources with the help
    of tar.  Now that we use cp or ln -s exclusively, this just
    needlessly makes the files world writable; we should just respect
    the users' own umask setting.
    * libtoolize.in (func_copy): Remove umask 0 calls and simplify.
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

commit 16bcf1884998a56963d81c796d138b0107fffce7
Author: Gary V. Vaughan <address@hidden>
Date:   Fri Nov 28 16:18:36 2014 +0000

    maint: syntax-checks don't like ${ even in comments!
    
    * m4/ltdl.m4: Fix a comment to appease syntax-check rules.
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

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

Summary of changes:
 libtoolize.in |   12 ++----------
 m4/ltdl.m4    |    2 +-
 2 files changed, 3 insertions(+), 11 deletions(-)

diff --git a/libtoolize.in b/libtoolize.in
index dbc6ac3..6e5eaca 100644
--- a/libtoolize.in
+++ b/libtoolize.in
@@ -392,11 +392,7 @@ func_copy ()
 
     # Filters always take priority.
     if test -n "$my_filter"; then
-      if $opt_dry_run || {
-          ( umask 0
-            $SED -e "$my_filter" "$my_srcfile" > "$my_destfile"
-          ) >/dev/null 2>&1
-        }
+      if $opt_dry_run || $SED -e "$my_filter" "$my_srcfile" > "$my_destfile" 
2>/dev/null
       then
         func_notquiet_once "$my_msg_var"
         if $opt_verbose; then
@@ -422,11 +418,7 @@ func_copy ()
     my_copy_msg="$my_copy_type file '$my_destfile'"
     $opt_verbose && my_copy_msg="$my_copycmd $my_srcfile $my_destdir"
 
-    if $opt_dry_run || {
-        ( umask 0
-          $my_copycmd "$my_srcfile" "$my_destfile"
-        ) >/dev/null 2>&1
-      }
+    if $opt_dry_run || $my_copycmd "$my_srcfile" "$my_destfile" 2>/dev/null
     then
       func_notquiet_hdr "$my_msg_var" "$my_copy_msg"
     else
diff --git a/m4/ltdl.m4 b/m4/ltdl.m4
index 5dc1e80..dd34d49 100644
--- a/m4/ltdl.m4
+++ b/m4/ltdl.m4
@@ -817,7 +817,7 @@ _LT_EOF
 
       # ltfn_module_cmds module_cmds
       # Execute tilde-delimited MODULE_CMDS with environment primed for
-      # ${module_cmds} or ${archive_cmds} type content.
+      # $module_cmds or $archive_cmds type content.
       ltfn_module_cmds ()
       {( # subshell avoids polluting parent global environment
           module_cmds_save_ifs=$IFS; IFS='~'


hooks/post-receive
-- 
GNU Libtool



reply via email to

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