Merge "Clean up targetcli ramdisk installation"
This commit is contained in:
commit
8b002cba09
@ -19,10 +19,7 @@ install() {
|
|||||||
# TODO(bnemec): At some point this will need to be extended to support
|
# TODO(bnemec): At some point this will need to be extended to support
|
||||||
# Python 3, but for the moment we aren't using that anyway.
|
# Python 3, but for the moment we aren't using that anyway.
|
||||||
inst /usr/bin/python
|
inst /usr/bin/python
|
||||||
for i in $(find /usr/lib64/python2.7/ -type f); do
|
while IFS='' read -r -d '' i; do
|
||||||
inst $i
|
inst "$i"
|
||||||
done
|
done < <(find /usr/lib64/python2.7/ /usr/lib/python2.7/ -type f -print0)
|
||||||
for i in $(find /usr/lib/python2.7/ -type f); do
|
|
||||||
inst $i
|
|
||||||
done
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user