diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2009-12-09 17:40:31 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2009-12-09 17:45:47 +0100 |
commit | 959fa7ec51b89b5bc89d13af3aae76cf0c7ff4fe (patch) | |
tree | 7333da56a80ef8b14fe9462a7f3b66df90c26008 | |
parent | d79c373371152b1df15cc7836582b53ceeb02df3 (diff) |
obexpush: update INITSCRIPT_PARAMS to use only one digit param
* update-rc.d_0.7 calls "printf %02d 09" inside and 09 is considered as
octal number and it fails, then stop parameter is used as 00 and "sh:
09: invalid number" is shown in postinst.
* Maybe this should be fixed in update-rc.d as it suggests to use both
digits "update-rc.d [-n] [-r <root>] [-s] <basename> defaults [NN | sNN
kNN]" which is quite misleading as you cannot use 's' or 'k' as
prefix.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes/obexpush/obexpush_1.0.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/obexpush/obexpush_1.0.0.bb b/recipes/obexpush/obexpush_1.0.0.bb index 13b850875b..4de4cbe98f 100644 --- a/recipes/obexpush/obexpush_1.0.0.bb +++ b/recipes/obexpush/obexpush_1.0.0.bb @@ -14,7 +14,7 @@ S = "${WORKDIR}/obexpush" inherit update-rc.d INITSCRIPT_NAME = "opd" -INITSCRIPT_PARAMS = "defaults 33 09" +INITSCRIPT_PARAMS = "defaults 33 9" export GLIBINC = "-I${STAGING_INCDIR}/glib-2.0" export GLIBLIB = "-I${STAGING_LIBDIR} -lglib-2.0" |