Bug fixes
This commit is contained in:
@ -12,11 +12,11 @@ h=`sort busybox.links | uniq`
|
||||
for i in $h ; do
|
||||
mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `;
|
||||
myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `;
|
||||
mkdir -p $1$mypath
|
||||
echo " $1$mypath$myapp -> /bin/busybox"
|
||||
(cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp )
|
||||
mkdir -p $1$mypath
|
||||
(cd $1$mypath && rm -f $1$mypath$myapp && ln -s /bin/busybox $1$mypath$myapp )
|
||||
done
|
||||
rm -f $1/bin/busybox
|
||||
install -m 755 busybox $1/bin/busybox
|
||||
|
||||
|
||||
exit 0
|
||||
|
Reference in New Issue
Block a user