Make install fix: install the actual compiled layout - svkbd - simple virtual keyboard
(HTM) git clone git://git.suckless.org/svkbd
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 3a51eafd3aa60d130f8f4ea40273e307246f1f37
(DIR) parent 025a846ceafbcda91d132414cdf60622376df6e5
(HTM) Author: Maarten van Gompel <proycon@anaproy.nl>
Date: Wed, 16 Sep 2020 16:07:31 +0200
Make install fix: install the actual compiled layout
Diffstat:
M Makefile | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
---
(DIR) diff --git a/Makefile b/Makefile
@@ -3,7 +3,7 @@
.POSIX:
NAME = svkbd
-VERSION = 0.2
+VERSION = 0.2.1
include config.mk
@@ -50,11 +50,8 @@ dist:
install: all
mkdir -p ${DESTDIR}${PREFIX}/bin
- for i in ${NAME}-??; \
- do \
- cp $$i ${DESTDIR}${PREFIX}/bin; \
- chmod 755 ${DESTDIR}${PREFIX}/bin/$$i; \
- done
+ cp ${NAME}-${LAYOUT} ${DESTDIR}${PREFIX}/bin
+ chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}-${LAYOUT}
mkdir -p "${DESTDIR}${MANPREFIX}/man1"
sed "s/VERSION/${VERSION}/g" < ${MAN1} > ${DESTDIR}${MANPREFIX}/man1/${MAN1}
chmod 644 ${DESTDIR}${MANPREFIX}/man1/${MAN1}