[Buildroot] [git commit branch/2024.11.x] package/dillo: remove trailing slash in _SITE url
Arnout Vandecappelle
arnout at rnout.be
Fri Apr 11 10:42:48 UTC 2025
commit: https://git.buildroot.net/buildroot/commit/?id=3c6df76adf752d4ea0d1602fbe736ecff312f45b
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2024.11.x
Commit f2a862fe60 (package/dillo: move to github) changed the source
site for the Dillo package. This change introduced a trailing slash at
the end of the URL.
This cause an error when running `make show-info` with `BR2_PACKAGE_DILLO=y`:
```
package/dillo/dillo.mk:46: *** DILLO_SITE (https://github.com/dillo-browser/dillo/releases/download/v3.0.5/) cannot have a trailing slash. Stop.
```
This commit removes the trailing slash.
Signed-off-by: Thomas Perale <thomas.perale at mind.be>
Signed-off-by: Julien Olivain <ju.o at free.fr>
(cherry picked from commit a3b4ae2eaca9791c7c184e49a04a348dd35185c3)
Signed-off-by: Thomas Perale <thomas.perale at mind.be>
---
package/dillo/dillo.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/dillo/dillo.mk b/package/dillo/dillo.mk
index 5a823aa4a3..802be84717 100644
--- a/package/dillo/dillo.mk
+++ b/package/dillo/dillo.mk
@@ -6,7 +6,7 @@
DILLO_VERSION = 3.0.5
DILLO_SOURCE = dillo-$(DILLO_VERSION).tar.bz2
-DILLO_SITE = https://github.com/dillo-browser/dillo/releases/download/v$(DILLO_VERSION)/
+DILLO_SITE = https://github.com/dillo-browser/dillo/releases/download/v$(DILLO_VERSION)
DILLO_LICENSE = GPL-3.0+
DILLO_LICENSE_FILES = COPYING
# configure.ac gets patched, so autoreconf is necessary
More information about the buildroot
mailing list