about summary refs log tree commit diff
path: root/system.mk
diff options
context:
space:
mode:
Diffstat (limited to 'system.mk')
-rw-r--r--system.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/system.mk b/system.mk
index 9a56c9d..4ed82be 100644
--- a/system.mk
+++ b/system.mk
@@ -17,11 +17,11 @@ clean:
 	rm -f ${DISTFILES}
 
 install: ${DISTFILES}
-	install -d ${EXMANDIR}/${SYSTEM}
+	install -d ${DESTDIR}${EXMANDIR}/${SYSTEM}
 .for distfile in ${DISTFILES}
-	${TAR} -x -f ${distfile} -C ${EXMANDIR}/${SYSTEM} \
+	${TAR} -x -f ${distfile} -C ${DESTDIR}${EXMANDIR}/${SYSTEM} \
 		--strip-components=${STRIP} '${FILES}' || ${ALLOW_FAILURE}
 .endfor
 
 uninstall:
-	rm -fr ${EXMANDIR}/${SYSTEM}
+	rm -fr ${DESTDIR}${EXMANDIR}/${SYSTEM}