From 7b72a28f19d3ef9c74460a22965a1c00c26b9783 Mon Sep 17 00:00:00 2001 From: Robin B Date: Mon, 7 May 2018 10:17:39 +0200 Subject: [PATCH] Fix fatal make issue when using XDG_CONFIG_DIRS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a93c8c7..c0337a7 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ endif ifeq ($(INSTALL),unix) CFLAGS_INSTALL = -DGLAVA_UNIX ifdef XDG_CONFIG_DIRS - SHADER_DIR = $(firstword $(subst :, ,$XDG_CONFIG_DIR))/glava + SHADER_DIR = $(firstword $(subst :, ,$(XDG_CONFIG_DIRS)))/glava else SHADER_DIR = etc/xdg/glava endif