diff options
author | Michael Krelin <hacker@klever.net> | 2007-07-07 17:05:43 +0000 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-07 17:05:43 +0000 |
commit | 598d599bfa74da893ba312a2508b3b4e01c93191 (patch) | |
tree | 6099e53f8e044fa1f92b77c229439eafcc7ff078 /packages/opie-irdaapplet/opie-irdaapplet.inc | |
parent | 8cdede5db9a2f5edc6a8041390b4d930997e8317 (diff) |
opie-irdaapplet: now aware of filesystem layout too
Diffstat (limited to 'packages/opie-irdaapplet/opie-irdaapplet.inc')
-rw-r--r-- | packages/opie-irdaapplet/opie-irdaapplet.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/opie-irdaapplet/opie-irdaapplet.inc b/packages/opie-irdaapplet/opie-irdaapplet.inc index d9f15453a5..ed47c2ca60 100644 --- a/packages/opie-irdaapplet/opie-irdaapplet.inc +++ b/packages/opie-irdaapplet/opie-irdaapplet.inc @@ -13,13 +13,13 @@ pkg_postinst() { #!/bin/sh if [ -n "$D" ]; then exit 1; fi if pidof -s qpe >/dev/null; then - /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" + ${bindir}/qcop QPE/TaskBar "reloadApplets()" fi } pkg_postrm() { #!/bin/sh -/opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +${bindir}/qcop QPE/TaskBar "reloadApplets()" if [ -n "$D" ]; then false; fi } |