summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@gnome.org>2020-06-19 10:12:04 +0200
committerAntoine Jacoutot <ajacoutot@gnome.org>2020-06-20 11:11:02 +0000
commit1926ae7021a2f8e842ad566a49f3a947c02cec92 (patch)
tree1a59946653a97209853b019ad2e91606cb90e0ce /src/install.c
parent02e13daa5a6a532181b66c8a197930b6f0171909 (diff)
downloaddesktop-file-utils-1926ae7021a2f8e842ad566a49f3a947c02cec92.tar.gz
pledge: add support to remaining utilities
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/install.c b/src/install.c
index fba3a7c..915ed58 100644
--- a/src/install.c
+++ b/src/install.c
@@ -837,6 +837,13 @@ main (int argc, char **argv)
mode_t dir_permissions;
char *basename;
+#ifdef HAVE_PLEDGE
+ if (pledge ("stdio rpath wpath cpath fattr", NULL) == -1) {
+ g_printerr ("pledge\n");
+ return 1;
+ }
+#endif
+
setlocale (LC_ALL, "");
basename = g_path_get_basename (argv[0]);
@@ -854,6 +861,16 @@ main (int argc, char **argv)
g_option_group_add_entries (group, install_options);
g_option_context_add_group (context, group);
}
+#ifdef HAVE_PLEDGE
+ else
+ {
+ /* In edit mode we can drop the fattr pledge. */
+ if (pledge ("stdio rpath wpath cpath", NULL) == -1) {
+ g_printerr ("pledge in edit_mode\n");
+ return 1;
+ }
+ }
+#endif
group = g_option_group_new ("edit", _("Edition options for desktop file"), _("Show desktop file edition options"), NULL, NULL);
g_option_group_add_entries (group, edit_options);