commit e41242b12852c319f6a06d6995ea59976314864d
parent 1a1d308e329d529a24a040683776b5e984e30a41
Author: mrgrouse <bdmfegys@duck.com>
Date: Fri, 4 Jul 2025 02:20:06 -0400
Makefile: use full chmod access # in install command
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -31,7 +31,7 @@ dist: clean
rm -rf birdwm-${VERSION}
install: all
- install -D -m 755 birdwm ${DESTDIR}${PREFIX}/bin/birdwm
+ install -D -m 0755 birdwm ${DESTDIR}${PREFIX}/bin/birdwm
mkdir -p ${DESTDIR}${MANPREFIX}/man1
sed "s/VERSION/${VERSION}/g" < birdwm.1 > ${DESTDIR}${MANPREFIX}/man1/birdwm.1
chmod 644 ${DESTDIR}${MANPREFIX}/man1/birdwm.1