diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-06-03 17:27:03 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-06-03 17:27:03 +0000 |
commit | 4f2d36ffab806e7e07828fe611a24c41ebf85481 (patch) | |
tree | ac64a5f8c83de028f0daa404abf81313d5b863aa /opie-handwriting | |
parent | bd33a6904b0c3484669a15c3f8c0455eb13486d9 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into home.hrw.one.pl:/home/szczepan/zaurus/oe/packages
2004/06/03 19:25:28+02:00 hrw.one.pl!hrw
remove postinst/postrm errors
BKrev: 40bf5f67OtvAg844gK-VdDDx38NM-w
Diffstat (limited to 'opie-handwriting')
-rw-r--r-- | opie-handwriting/opie-handwriting_cvs.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opie-handwriting/opie-handwriting_cvs.oe b/opie-handwriting/opie-handwriting_cvs.oe index 8660693e38..c33fc2e399 100644 --- a/opie-handwriting/opie-handwriting_cvs.oe +++ b/opie-handwriting/opie-handwriting_cvs.oe @@ -16,7 +16,7 @@ inherit opie pkg_postinst() { #!/bin/sh -if [ -n $D ]; then exit 1; fi +if [ -n "$D" ]; then exit 1; fi if pidof -s qpe >/dev/null; then /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadInputMethods()" else @@ -27,7 +27,7 @@ fi pkg_postrm() { #!/bin/sh -if [ -n $D ]; then exit 1; fi +if [ -n "$D" ]; then exit 1; fi /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadInputMethods()" } |