summaryrefslogtreecommitdiff
path: root/scripts/mksymlinks
blob: a32298b96238be0f9b7dd2aba67ce32a4ff83c03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
cd $OPIEDIR

for file in `make showcomponents`
do if [ -d $file/pics ]
then ln -sf $OPIEDIR/$file/pics $OPIEDIR/pics/$file
fi
done




exit 0