summaryrefslogtreecommitdiffstats
path: root/core/modules/cron
diff options
context:
space:
mode:
authorSimon Rettberg2021-07-09 15:59:53 +0200
committerSimon Rettberg2021-07-09 15:59:53 +0200
commit6088ff8fbc9111d2ae0ec21c2256833b01d4dde7 (patch)
tree3a6fdb3065c08f2d9f19dc12bc64b94cc014644a /core/modules/cron
parentautoclone: Prefix with repo name (diff)
downloadmltk-6088ff8fbc9111d2ae0ec21c2256833b01d4dde7.tar.gz
mltk-6088ff8fbc9111d2ae0ec21c2256833b01d4dde7.tar.xz
mltk-6088ff8fbc9111d2ae0ec21c2256833b01d4dde7.zip
[cron] Fix cp path
Diffstat (limited to 'core/modules/cron')
-rw-r--r--core/modules/cron/module.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/cron/module.build b/core/modules/cron/module.build
index 66cc8ecc..54290c14 100644
--- a/core/modules/cron/module.build
+++ b/core/modules/cron/module.build
@@ -13,7 +13,7 @@ build() {
# NO MAKE INSTALL: Copy to build dir, since there are no shared libs linked in
mkdir -p "${MODULE_BUILD_DIR}/opt/openslx/sbin"
- cp "${MODULE_WORK_DIR}/src/src/crond" "${MODULE_BUILD_DIR}/opt/openslx/sbin/" || perror "Could not copy crond binary to ${MODULE_BUILD_DIR}"
+ cp "crond" "${MODULE_BUILD_DIR}/opt/openslx/sbin/" || perror "Could not copy crond binary to ${MODULE_BUILD_DIR}"
cd - &>/dev/null
}