fix DESTDIRK typo in yacc/Makefile - 9base - revived minimalist port of Plan 9 userland to Unix | |
git clone git://git.suckless.org/9base | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c | |
parent 7a0d18922b67c0e21c415e0865a1cfdb0646f020 | |
Author: Evan Gates | |
Date: Wed, 17 Aug 2016 11:40:29 -0700 fix DESTDIRK typo in yacc/Makefile Diffstat: M yacc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- | |
diff --git a/yacc/Makefile b/yacc/Makefile | |
@@ -6,8 +6,8 @@ TARG = yacc include ../std.mk pre-uninstall: - rm -f ${DESTDIRK}${PREFIX}/yacc/yaccpar - rm -f ${DESTDIRK}${PREFIX}/yacc/yaccpars + rm -f ${DESTDIR}${PREFIX}/yacc/yaccpar + rm -f ${DESTDIR}${PREFIX}/yacc/yaccpars post-install: @mkdir -p ${DESTDIR}${PREFIX}/yacc |