Introduction
Introduction Statistics Contact Development Disclaimer Help
Make install fix: install the actual compiled layout - svkbd - simple virtual k…
git clone git://git.suckless.org/svkbd
Log
Files
Refs
README
LICENSE
---
commit 3a51eafd3aa60d130f8f4ea40273e307246f1f37
parent 025a846ceafbcda91d132414cdf60622376df6e5
Author: Maarten van Gompel <[email protected]>
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(-)
---
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/$…
chmod 644 ${DESTDIR}${MANPREFIX}/man1/${MAN1}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.