diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2020-05-08 18:06:20 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2020-05-17 11:51:47 +0200 |
commit | 6ae322468832759c1950779d6faff0fa550580ce (patch) | |
tree | 101e60918693b24a90bdfcf3e77f7f36f5ff2480 /src/cron.in | |
parent | 39857ae8442853e4f7d89116da400ca24d58ba7b (diff) | |
download | mcron-6ae322468832759c1950779d6faff0fa550580ce.tar.gz mcron-6ae322468832759c1950779d6faff0fa550580ce.tar.bz2 mcron-6ae322468832759c1950779d6faff0fa550580ce.zip |
scripts: Separate build/install directory context
This prevents installed modules to interfere with the ones from the
build directory.
* src/cron.in: Augment Guile load paths with install directories only
when MCRON_UNINSTALLED environment variable is not set.
* src/crontab.in: Likewise.
* src/mcron.in: Likewise.
Diffstat (limited to 'src/cron.in')
-rw-r--r-- | src/cron.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/cron.in b/src/cron.in index 97d49b4..25ad273 100644 --- a/src/cron.in +++ b/src/cron.in @@ -2,7 +2,9 @@ -*- scheme -*- !# -(set! %load-path (cons "%modsrcdir%" %load-path)) -(set! %load-compiled-path (cons "%modbuilddir%" %load-compiled-path)) -(use-modules (mcron scripts cron)) +(unless (getenv "MCRON_UNINSTALLED") + (set! %load-path (cons "%modsrcdir%" %load-path)) + (set! %load-compiled-path (cons "%modbuilddir%" %load-compiled-path))) + +(use-modules (mcron scripts cron)) (main) |