summaryrefslogtreecommitdiff
path: root/debian/targetcli.postinst
blob: 8412fc63bad72105791e9060a92f277ec2a14363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
for lib in lib lib64; do
	for python in python2.6; do
		if [ -e /usr/${lib}/${python} ]; then
			if [ ! -e /usr/${lib}/${python}/targetcli ]; then
				mkdir /usr/${lib}/${python}/targetcli
				for source in /usr/share/python-support/targetcli/targetcli/*.py; do
					ln -sf ${source} /usr/${lib}/${python}/targetcli/
				done
				python_path=$(which ${python} 2>/dev/null)
				if [ ! -z $python_path ]; then
					${python} -c "import compileall; compileall.compile_dir('/usr/${lib}/${python}/targetcli', force=1)"
				fi
			fi
		fi
	done
done