Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ updates:
schedule:
interval: "cron"
cronjob: "1 2 1,15 * *"
versioning-strategy: "increase-if-necessary"
# We want "increase-if-neccessary", but it's not supported for cargo.
# See dependabot/dependabot-core#4009
versioning-strategy: "lockfile-only"
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ MODULE = nginx_acme
BUILD ?= debug
TESTS ?= t/
NGX_CARGO ?= cargo
# will be used to print host-tuple
NGX_RUSTC ?= rustc

NGINX_CONFIGURE_BASE = \
auto/configure \
Expand Down
2 changes: 1 addition & 1 deletion build/compat-gnu.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HOST_TUPLE := $(shell $(NGX_RUSTC) --print=host-tuple)
HOST_TUPLE := $(shell $(NGX_CARGO) -vV | awk '/^host: / { print $$2; }')

# extension for Rust cdylib targets
ifeq ($(shell uname), Darwin)
Expand Down
2 changes: 1 addition & 1 deletion build/compat-posix.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HOST_TUPLE != $(NGX_RUSTC) --print=host-tuple
HOST_TUPLE != $(NGX_CARGO) -vV | awk '/^host: / { print $$2; }'

# bsd make compatibility
CURDIR ?= $(.CURDIR)
Expand Down
Loading