This commit is contained in:
Mid Favila 2022-02-24 10:05:46 -04:00
parent 156dc3b741
commit dbe99e7268
3 changed files with 10 additions and 3 deletions

0
mbase/cproc-git Normal file
View File

0
mbase/strace Normal file
View File

View File

@ -10,8 +10,15 @@
make
make DESTDIR="$1" install
ln -s bsdcat "$1/usr/bin/cat"
ln -s bsdcpio "$1/usr/bin/cpio"
ln -s bsdtar "$1/usr/bin/tar"
for i in zcat bzcat xzcat
do
ln -s $i "$1/usr/bin/$i"
done
for i in bsdcpio bsdtar
do
mv "$1/usr/bin/$i" "$1/usr/bin/$(echo $i|sed 's/bsd//')"
done
install -Dm755 unzip "$1/usr/bin/unzip"