commit 9b2df2ea6930c8ff03af6b3982e735bd4e25f43d
parent 04f8f3517b189298ffb88a097c07f07ca6422df6
Author: mrgrouse <bdmfegys@duck.com>
Date: Sun, 19 May 2024 18:31:33 -0400
Makefile: fix upx checking line
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -27,7 +27,7 @@ config.h:
birdwm: ${OBJ}
${CC} -o $@ ${OBJ} ${LDFLAGS}
- [ -z "$(which upx)" ] && upx birdwm;
+ [ -z "$(shell which upx)" ] || upx birdwm;
clean:
rm -f *.rej *.orig birdwm ${OBJ} birdwm-${VERSION}.tar.gz