Merge "Add file to tinybuild's IPA image"
This commit is contained in:
commit
ca0652c1c5
@ -3,6 +3,7 @@ coreutils.tcz
|
|||||||
dmidecode.tcz
|
dmidecode.tcz
|
||||||
gdisk.tcz
|
gdisk.tcz
|
||||||
glib2.tcz
|
glib2.tcz
|
||||||
|
file.tcz
|
||||||
hdparm.tcz
|
hdparm.tcz
|
||||||
iproute2.tcz
|
iproute2.tcz
|
||||||
ipv6-4.8.17-tinycore64.tcz
|
ipv6-4.8.17-tinycore64.tcz
|
||||||
|
@ -205,7 +205,7 @@ echo "Symlink all from /usr/local/sbin to /usr/sbin"
|
|||||||
pushd "$FINALDIR/usr/local/sbin"
|
pushd "$FINALDIR/usr/local/sbin"
|
||||||
for target in *; do
|
for target in *; do
|
||||||
if [ ! -f "$FINALDIR/usr/sbin/$target" ]; then
|
if [ ! -f "$FINALDIR/usr/sbin/$target" ]; then
|
||||||
$CHROOT_CMD ln -s "/usr/local/sbin/$target" "/usr/sbin/$target"
|
$CHROOT_CMD ln -sf "/usr/local/sbin/$target" "/usr/sbin/$target"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
popd
|
popd
|
||||||
@ -214,7 +214,7 @@ echo "Symlink all from /usr/local/bin to /usr/bin"
|
|||||||
pushd "$FINALDIR/usr/local/bin"
|
pushd "$FINALDIR/usr/local/bin"
|
||||||
for target in *; do
|
for target in *; do
|
||||||
if [ ! -f "$FINALDIR/usr/bin/$target" ]; then
|
if [ ! -f "$FINALDIR/usr/bin/$target" ]; then
|
||||||
$CHROOT_CMD ln -s "/usr/local/bin/$target" "/usr/bin/$target"
|
$CHROOT_CMD ln -sf "/usr/local/bin/$target" "/usr/bin/$target"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
popd
|
popd
|
||||||
|
Loading…
Reference in New Issue
Block a user