diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2005-04-18 20:44:58 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2005-04-18 20:44:58 +0000 |
commit | bbf1ff8c99effbfeef4bd8aebd84bb0ca123a8ca (patch) | |
tree | 2b475667ea6292c7fca9091091d78a99f3e34776 | |
parent | Update to 1.1. (diff) |
. Add long option support on FreeBSD 4.x and early FreeBSD 5.x by setting
USE_GETOPT_LONG. This achieves the submitters goal, but via a different
method.
Submitted by: John E Hein <jhein@timing.com>
Notes
Notes:
svn path=/head/; revision=133614
-rw-r--r-- | archivers/bsdtar/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archivers/bsdtar/Makefile b/archivers/bsdtar/Makefile index 2f4291c8f084..f6c07561de5e 100644 --- a/archivers/bsdtar/Makefile +++ b/archivers/bsdtar/Makefile @@ -28,6 +28,10 @@ MAN1= bsdtar.1 .include <bsd.port.pre.mk> +.if ${OSVERSION} < 500040 +USE_GETOPT_LONG=yes +.endif + .if ${OSVERSION} >= 502111 IGNORE= is in the base system .endif |