summaryrefslogtreecommitdiff
path: root/gtk/gui.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-02-20 18:37:50 +0000
committerVincent Sanders <vince@kyllikki.org>2016-02-20 18:37:50 +0000
commit6a4efa35f815b85c5e59b3781263a956fab8d86d (patch)
tree1fe3459167ac4188db94c1afddd601aa277e1336 /gtk/gui.c
parent592ff0ef76199e4cc5089e7e76036ae259bcdcd2 (diff)
downloadnetsurf-6a4efa35f815b85c5e59b3781263a956fab8d86d.tar.gz
netsurf-6a4efa35f815b85c5e59b3781263a956fab8d86d.tar.bz2
update gtk resource path setting to use makefile variable
Diffstat (limited to 'gtk/gui.c')
-rw-r--r--gtk/gui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gui.c b/gtk/gui.c
index 28e5c3c90..7ad18b499 100644
--- a/gtk/gui.c
+++ b/gtk/gui.c
@@ -116,7 +116,7 @@ nsgtk_init_resource_path(const char *config_home)
if (config_home != NULL) {
resource_path_len = snprintf(NULL, 0,
- "%s:${NETSURFRES}:%s:./gtk/res",
+ "%s:${NETSURFRES}:%s",
config_home,
GTK_RESPATH);
resource_path = malloc(resource_path_len + 1);
@@ -124,12 +124,12 @@ nsgtk_init_resource_path(const char *config_home)
return NULL;
}
snprintf(resource_path, resource_path_len + 1,
- "%s:${NETSURFRES}:%s:./gtk/res",
+ "%s:${NETSURFRES}:%s",
config_home,
GTK_RESPATH);
} else {
resource_path_len = snprintf(NULL, 0,
- "${NETSURFRES}:%s:./gtk/res",
+ "${NETSURFRES}:%s",
GTK_RESPATH);
resource_path = malloc(resource_path_len + 1);
if (resource_path == NULL) {
@@ -137,7 +137,7 @@ nsgtk_init_resource_path(const char *config_home)
}
snprintf(resource_path,
resource_path_len + 1,
- "${NETSURFRES}:%s:./gtk/res",
+ "${NETSURFRES}:%s",
GTK_RESPATH);
}