summaryrefslogtreecommitdiffstats
path: root/src/wgtpkg-uninstall.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-07-11 17:06:06 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-07-11 17:06:06 +0200
commit69ead37e1a16301839ca62d48235e93bb0cc580e (patch)
tree20c43c3145ca6855a36fddf456aae6517b4e1e68 /src/wgtpkg-uninstall.c
parent0ee18c0280f67ef458a450c6da408859b8a6734f (diff)
Allow to install widget with no icon
This patch allows a widget to not specify any icon but it still enforce when an icon is specified to specify only one icon and to provide the attribute "src". Bug-AGL: SPEC-702 Change-Id: I916b7581ac1f486a4a1d5774d0885c3711029f69 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/wgtpkg-uninstall.c')
-rw-r--r--src/wgtpkg-uninstall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wgtpkg-uninstall.c b/src/wgtpkg-uninstall.c
index 653aea7..6156c0a 100644
--- a/src/wgtpkg-uninstall.c
+++ b/src/wgtpkg-uninstall.c
@@ -87,8 +87,8 @@ int uninstall_widget(const char *idaver, const char *root)
rc = snprintf(path, sizeof path, "%s/%s", FWK_ICON_DIR, idaver);
assert(rc < (int)sizeof path);
rc = unlink(path);
- if (rc < 0)
- ERROR("can't removing '%s': %m", path);
+ if (rc < 0 && errno != ENOENT)
+ ERROR("can't remove '%s': %m", path);
/* removes the parent directory if empty */
rc2 = snprintf(path, sizeof path, "%s/%s", root, id);
@@ -97,7 +97,7 @@ int uninstall_widget(const char *idaver, const char *root)
if (rc < 0 && errno == ENOTEMPTY)
return rc;
if (rc < 0) {
- ERROR("error while removing directory '%s': %m", path);
+ ERROR("while removing directory '%s': %m", path);
return -1;
}