~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to kopete/kconf_update/kopete-pluginloader2.sh

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
ImportĀ upstreamĀ versionĀ 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
IFS=:
 
4
SUFF=kconf_update_bin/kopete-pluginloader2-kconf_update
 
5
for path in `kde-config --path lib`; do
 
6
  if test -x "$path/$SUFF"; then
 
7
     exec "$path/$SUFF"
 
8
  fi
 
9
done
 
10