diff options
author | Richard Levitte <levitte@openssl.org> | 2015-12-07 16:50:15 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-12-07 17:49:15 +0100 |
commit | b91dd150d2b9b5ddca37722e7f52ea59ba7f80da (patch) | |
tree | d1086e38bce2aa41cce28f239dd4bd972ba75225 /Makefile.org | |
parent | Add an entry in CHANGES (diff) | |
download | openssl-b91dd150d2b9b5ddca37722e7f52ea59ba7f80da.tar.xz openssl-b91dd150d2b9b5ddca37722e7f52ea59ba7f80da.zip |
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>
Diffstat (limited to 'Makefile.org')
-rw-r--r-- | Makefile.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org index 0ecb897cb9..b0d2fcf392 100644 --- a/Makefile.org +++ b/Makefile.org @@ -493,7 +493,7 @@ TABLE: Configure Configurations/*.conf # 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 - |