mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
11 lines
281 B
Bash
11 lines
281 B
Bash
|
|
#!/bin/sh
|
||
|
|
cd lib
|
||
|
|
for i in `rpm -ql python | grep lib\/python | grep -v .pyc$ | grep -v .pyo$ | sed 's/\/usr\/lib\///' ` ; do
|
||
|
|
if [ -f /usr/lib/$i ] ; then
|
||
|
|
if [ ! -d `dirname $i` ] ; then
|
||
|
|
mkdir -p `dirname $i`
|
||
|
|
fi
|
||
|
|
cp /usr/lib/$i $i
|
||
|
|
fi
|
||
|
|
done
|