Skip to content
Open
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
3 changes: 2 additions & 1 deletion netutils/cjson/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
if(CONFIG_NETUTILS_CJSON)

if(NOT CONFIG_NETUTILS_CJSON_URL)
set(CONFIG_NETUTILS_CJSON_URL "https://github.com/DaveGamble/cJSON/archive")
set(CONFIG_NETUTILS_CJSON_URL
"https://github.com/DaveGamble/cJSON/archive/refs/tags")
endif()

if(NOT CONFIG_NETUTILS_CJSON_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion netutils/cjson/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if NETUTILS_CJSON

config NETUTILS_CJSON_URL
string "URL where cJSON library can be downloaded"
default "https://github.com/DaveGamble/cJSON/archive"
default "https://github.com/DaveGamble/cJSON/archive/refs/tags"

config NETUTILS_CJSON_VERSION
string "Version number"
Expand Down
2 changes: 1 addition & 1 deletion netutils/cjson/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ include $(APPDIR)/Make.defs

WD := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}

CONFIG_NETUTILS_CJSON_URL ?= "https://github.com/DaveGamble/cJSON/archive"
CONFIG_NETUTILS_CJSON_URL ?= "https://github.com/DaveGamble/cJSON/archive/refs/tags"
CONFIG_NETUTILS_CJSON_VERSION ?= "1.7.10"
CJSON_VERSION = $(patsubst "%",%,$(strip $(CONFIG_NETUTILS_CJSON_VERSION)))

Expand Down
Loading