-rwxr-xr-x | scripts/mksymlinks | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/mksymlinks b/scripts/mksymlinks new file mode 100755 index 0000000..a32298b --- a/dev/null +++ b/scripts/mksymlinks @@ -0,0 +1,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 |