mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 08:09:08 +00:00
b83e1e51be
them. These were al hand-copied over before.
15 lines
356 B
Bash
Executable File
15 lines
356 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This file will extract all of the FreeBSD secure distribution into
|
|
# ${EXTRACT_TARGET} if it is set, or / otherwise.
|
|
#
|
|
SOURCEDIR=.
|
|
if [ X"${EXTRACT_TARGET}" = X"" ]; then
|
|
EXTRACT_TARGET=/
|
|
fi
|
|
|
|
cd $SOURCEDIR
|
|
|
|
cat des_tgz.* | gunzip | tar --directory ${EXTRACT_TARGET} -xpf -
|
|
cat libcrypt.aa | gunzip | tar --directory ${EXTRACT_TARGET} -xpf -
|