From 8bd543562b5b7495194e41a58162e7deb7bb41e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Fri, 29 Jan 2021 16:44:23 +0100 Subject: [PATCH] Quote SYSCONFDIR definition As SYSCONFDIR is a compile time string literal, use compile time string concatenation instead of a runtime one. Also drop related TODO, cause we indeed using the correct way of getting $sysconfdir from autoconf --- Makefile.am | 2 +- Settings.c | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index e83773f9..a674e021 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,7 +18,7 @@ pixmap_DATA = htop.png appicondir = $(datadir)/icons/hicolor/scalable/apps appicon_DATA = htop.svg -AM_CFLAGS += -pedantic -std=c99 -D_XOPEN_SOURCE_EXTENDED -DSYSCONFDIR=\"$(sysconfdir)\" -I"$(top_srcdir)/$(my_htop_platform)" +AM_CFLAGS += -pedantic -std=c99 -D_XOPEN_SOURCE_EXTENDED -DSYSCONFDIR="\"$(sysconfdir)\"" -I"$(top_srcdir)/$(my_htop_platform)" AM_LDFLAGS = myhtopsources = \ diff --git a/Settings.c b/Settings.c index a2bb0962..6c8f8894 100644 --- a/Settings.c +++ b/Settings.c @@ -424,10 +424,7 @@ Settings* Settings_new(int initialCpuCount) { } if (!ok) { this->changed = true; - // TODO: how to get SYSCONFDIR correctly through Autoconf? - char* systemSettings = String_cat(SYSCONFDIR, "/htoprc"); - ok = Settings_read(this, systemSettings, initialCpuCount); - free(systemSettings); + ok = Settings_read(this, SYSCONFDIR "/htoprc", initialCpuCount); } if (!ok) { Settings_defaultMeters(this, initialCpuCount);