summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rwxr-xr-xscripts/mksymlinks6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mksymlinks b/scripts/mksymlinks
index a9050b4..ebe346e 100755
--- a/scripts/mksymlinks
+++ b/scripts/mksymlinks
@@ -4,9 +4,9 @@ cd $OPIEDIR
4for file in `make showcomponents` 4for file in `make showcomponents`
5do 5do
6 if [ -d $file/pics ]
7 then
8 dir=`echo $file|sed -e 's#\(.*\)/##g'` 6 dir=`echo $file|sed -e 's#\(.*\)/##g'`
9 path=`echo $file|sed -e "s#\(.*\)$dir#\1#g"` 7 path=`echo $file|sed -e "s#\(.*\)$dir#\1#g"`
10 ln -sf $OPIEDIR/$path$dir/pics $OPIEDIR/pics/$dir 8 if [ -d $file/pics -a ! -e $OPIEDIR/pics/$dir ]
9 then
10 ln -sf ../$path$dir/pics $OPIEDIR/pics/$dir
11 fi 11 fi
12done 12done