mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Oops: gtar's --dereference should be a synonym for bsdtar's -L, not -H.
Pointed out by: devel/nspr port Thanks to: Kris Kennaway
This commit is contained in:
parent
20fe68acb9
commit
c066ba2f01
2 changed files with 3 additions and 3 deletions
|
|
@ -535,9 +535,9 @@ components, or symlinks to other directories.
|
|||
.Sh STANDARDS
|
||||
There is no current POSIX standard for the tar command; it appeared
|
||||
in
|
||||
.St -p 1003.1-1997
|
||||
.St -p1003.1-1997
|
||||
but was dropped from
|
||||
.St -p 1003.1-2001 .
|
||||
.St -p1003.1-2001 .
|
||||
The options used by this implementation were developed by surveying a
|
||||
number of existing tar implementations as well as the old POSIX specification
|
||||
for tar and the current POSIX specification for pax.
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ const struct option tar_longopts[] = {
|
|||
{ "cd", required_argument, NULL, 'C' },
|
||||
{ "confirmation", no_argument, NULL, 'w' },
|
||||
{ "create", no_argument, NULL, 'c' },
|
||||
{ "dereference", no_argument, NULL, 'H' },
|
||||
{ "dereference", no_argument, NULL, 'L' },
|
||||
{ "directory", required_argument, NULL, 'C' },
|
||||
{ "exclude", required_argument, NULL, OPTION_EXCLUDE },
|
||||
{ "extract", no_argument, NULL, 'x' },
|
||||
|
|
|
|||
Loading…
Reference in a new issue