| Submitter | Mark Hatle |
|---|---|
| Date | Nov. 10, 2011, 6:30 p.m. |
| Message ID | <7f6e526f7386df8b243af0fda0faf23231faa4f3.1320949721.git.mark.hatle@windriver.com> |
| Download | mbox | patch |
| Permalink | /patch/14767/ |
| State | Accepted |
| Commit | 1ce23fe7d7c33c196af3ba25b4e97496718328d1 |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc index cd62d8f..ccdc4c3 100644 --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc @@ -66,9 +66,9 @@ do_install () { } pkg_postinst_wpa-supplicant () { - # can't do this offline + # If we're offline, we don't need to do this. if [ "x$D" != "x" ]; then - exit 1 + exit 0 fi DBUSPID=`pidof dbus-daemon` diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb index 03bd937..98eba77 100644 --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb @@ -1,6 +1,6 @@ require wpa-supplicant-0.7.inc -PR = "r4" +PR = "r5" SRC_URI[md5sum] = "f516f191384a9a546e3f5145c08addda" SRC_URI[sha256sum] = "d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443"
We only want to reload dbus, if we're install on the target -- not on the host. Signed-off-by: Mark Hatle <mark.hatle@windriver.com> --- .../wpa-supplicant/wpa-supplicant-0.7.inc | 4 ++-- .../wpa-supplicant/wpa-supplicant_0.7.3.bb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)