mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 17:00:49 +01:00
24c120144b
*so many problems*.. Too bad the snaps themselves don't get made as a consequence.. :-) Bump the date forward Yet Another Day. David has some changes he wants to see rolled in, so I guess we're down for Feb 2nd as the snap date!
13 lines
353 B
Bash
13 lines
353 B
Bash
#!/bin/sh
|
|
# $Id: extract_src.sh,v 1.3 1995/01/29 08:38:22 jkh Exp $
|
|
PATH=/stand:$PATH
|
|
DDIR=/usr/src
|
|
|
|
for DIST in base srcbin etc games gnu include lib libexec release sbin lkm \
|
|
release share sys usrbin usrsbin; do
|
|
if [ -f ${DIST}.aa ]; then
|
|
echo "Extracting ${DIST} sources"
|
|
cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
|
|
fi
|
|
done
|