[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Richard Levitte levitte at openssl.org
Mon Dec 7 19:11:08 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  777adea16aded9e398fb691074da60891ef63c58 (commit)
      from  641365436e363550486f74a3fe723b281c9ff81c (commit)


- Log -----------------------------------------------------------------
commit 777adea16aded9e398fb691074da60891ef63c58
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Dec 7 16:50:15 2015 +0100

    Change tar owner and group to just 0
    
    It seems like some tar versions don't like the name:id form for
    --owner and --group.  The closest known anonymous user being 0 (root),
    that seems to be the most appropriate user/group to assign ownership
    to.  It matters very little when unpacking either way.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (cherry picked from commit b91dd150d2b9b5ddca37722e7f52ea59ba7f80da)

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

Summary of changes:
 Makefile.org | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.org b/Makefile.org
index 7e7728f..dbb7374 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -499,7 +499,7 @@ TABLE: Configure
 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
 # tar does not support the --files-from option.
 TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from $(TARFILE).list \
-	                       --owner openssl:0 --group openssl:0 \
+	                       --owner 0 --group 0 \
 			       --transform 's|^|$(NAME)/|' \
 			       -cvf -
 


More information about the openssl-commits mailing list