From 00ec2e0c178ed5107690896adb154514a62899af Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Thu, 26 May 2016 09:14:02 +0200 Subject: [PATCH] Mk: if our first action is cp to dir, make sure we treat it as dir --- Mk/plugins.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mk/plugins.mk b/Mk/plugins.mk index d9b852b54..f31c05319 100644 --- a/Mk/plugins.mk +++ b/Mk/plugins.mk @@ -93,7 +93,7 @@ manifest: check scripts: check @for SCRIPT in ${PLUGIN_SCRIPTS}; do \ if [ -f $${SCRIPT} ]; then \ - cp $${SCRIPT} ${DESTDIR}; \ + cp $${SCRIPT} ${DESTDIR}/; \ fi; \ done