Use SYSCONFDIR

This commit is contained in:
Dave Davenport 2016-04-01 19:51:24 +02:00
parent 53242dab7d
commit d3350afbed
2 changed files with 3 additions and 2 deletions

View File

@ -80,7 +80,8 @@ rofi_CFLAGS=\
-I$(top_srcdir)/include/\
-I$(top_srcdir)/config/\
-I$(top_builddir)/\
-Werror=missing-prototypes
-Werror=missing-prototypes\
-DSYSCONFDIR=\"$(sysconfdir)\"
rofi_LDADD=\
$(glib_LIBS)\

View File

@ -434,7 +434,7 @@ static void setup_modi ( void )
static inline void load_configuration ( )
{
// Load distro default settings
gchar *etc = g_build_filename ( G_DIR_SEPARATOR_S, "etc", "rofi.conf", NULL );
gchar *etc = g_build_filename ( SYSCONFDIR, "rofi.conf", NULL );
if ( g_file_test ( etc, G_FILE_TEST_IS_REGULAR ) ) {
config_parse_xresource_options_file ( etc );
}