diff options
Diffstat (limited to '.config.mk')
| -rw-r--r-- | .config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config.mk b/.config.mk index 3349a7602..e03d29056 100644 --- a/.config.mk +++ b/.config.mk @@ -6,8 +6,8 @@ # Compare your settings here with file .config.sh used by the toolboxing in # utils. -export SEARX_URL=https://searx.me +export SEARX_URL:=$(or ${SEARX_URL},https://searx.me) -export GIT_URL=https://github.com/asciimoo/searx -export DOCS_URL=https://asciimoo.github.io/searx +export DOCS_URL:=$(or ${DOCS_URL},https://asciimoo.github.io/searx) +export GIT_URL:=$(or ${GIT_URL},https://github.com/asciimoo/searx) |