repo.or.cz
/
freebsd-src
/
fkvm-freebsd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git]
/
release
/
scripts
/
ports-install.sh
blob
81c4023c77eeb26790fc61c8b8e093ba471101e1
1
#!/bin/sh
2
#
3
# $FreeBSD$
4
#
5
6
if
[
"`id -u`"
!=
"0"
];
then
7
echo
"Sorry, this must be done as root."
8
exit
1
9
fi
10
echo
"Extracting ports tarball into
${DESTDIR}
/usr"
11
cat
ports.tgz |
tar
--unlink -xpzf
-
-C
${DESTDIR}
/
usr
12
exit
0