summaryrefslogtreecommitdiff
path: root/emulators/wine-devel/files/wine.sh
blob: fe67ceb5d4e2fe3a0bc1566af7363f7a5a3af3c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

case "$1" in
	start)
		/sbin/ldconfig -m %%PREFIX%%/lib/wine
		;;
	stop)
		;;
	*)
		echo ""
		echo "Usage: `basename $0` { start | stop }"
		echo ""
		exit 64
		;;
esac