commit 5c5d8ee7a9c16227ea7e6e6f0af8dc6b3b115497 parent a66fe5eb110effd98aa853d78ee1926c19aea17b Author: mrgrouse <bdmfegys@duck.com> Date: Fri, 26 Jul 2024 15:04:03 -0400 config.def.h & config.mk: fix broken WALLPAPERDIR and GIFDIR variable setting Diffstat:
| M | Makefile | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -22,8 +22,8 @@ ${OBJ}: config.h config.mk config.h: cp config.def.h $@ - sed -i "1i#define GIFDIR \"${HOME}/${GIFDIR}\"" config.h - sed -i "1i#define WALLPAPERDIR \"${HOME}/${WALLPAPERDIR}\"" config.h + sed -i "1i#define GIFDIR \"${GIFDIR}\"" config.h + sed -i "1i#define WALLPAPERDIR \"${WALLPAPERDIR}\"" config.h birdwm: ${OBJ} ${CC} -o $@ ${OBJ} ${LDFLAGS}