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@openssl.org>
(cherry picked from commit b91dd150d2)
			
			
This commit is contained in:
		@@ -499,7 +499,7 @@ TABLE: Configure
 | 
				
			|||||||
# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
 | 
					# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
 | 
				
			||||||
# tar does not support the --files-from option.
 | 
					# tar does not support the --files-from option.
 | 
				
			||||||
TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from $(TARFILE).list \
 | 
					TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from $(TARFILE).list \
 | 
				
			||||||
	                       --owner openssl:0 --group openssl:0 \
 | 
						                       --owner 0 --group 0 \
 | 
				
			||||||
			       --transform 's|^|$(NAME)/|' \
 | 
								       --transform 's|^|$(NAME)/|' \
 | 
				
			||||||
			       -cvf -
 | 
								       -cvf -
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user