diff options
author | 2000-12-14 13:26:26 +0000 | |
---|---|---|
committer | 2000-12-14 13:26:26 +0000 | |
commit | 8e1c74bb500941ca7e1b58c3c8c534a0cf81dda7 (patch) | |
tree | eefc903bc992bbf6cfef5df0cf33737353e5fefd | |
parent | Display MSCHAP as CHAP80 in ``show cpp'' (diff) | |
download | wireguard-openbsd-8e1c74bb500941ca7e1b58c3c8c534a0cf81dda7.tar.xz wireguard-openbsd-8e1c74bb500941ca7e1b58c3c8c534a0cf81dda7.zip |
Document additions to EXTRACT_CASES
-rw-r--r-- | share/man/man5/bsd.port.mk.5 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/share/man/man5/bsd.port.mk.5 b/share/man/man5/bsd.port.mk.5 index 8951b434370..2c38b99fc69 100644 --- a/share/man/man5/bsd.port.mk.5 +++ b/share/man/man5/bsd.port.mk.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bsd.port.mk.5,v 1.20 2000/12/10 02:50:07 espie Exp $ +.\" $OpenBSD: bsd.port.mk.5,v 1.21 2000/12/14 13:26:26 espie Exp $ .\" .\" Copyright (c) 2000 Marc Espie .\" @@ -378,6 +378,10 @@ do unzip -q ${FULLDISTDIR}/$$archive -d ${WRKDIR};; *.tar.bz2) bzip2 -dc ${FULLDISTDIR}/$$archive| tar xf -;; + *.shar.gz|*.shar.Z|*.sh.Z|*.sh.gz) + gzcat ${FULLDISTDIR}/$$archive | /bin/sh;; + *.shar|*.sh) + /bin/sh ${FULLDISTDIR}/$$archive;; *.tar) tar xf ${FULLDISTDIR}/$$archive;; *) |