Skip to content

Commit

Permalink
util-linux: Fix download URL to work with patch releases
Browse files Browse the repository at this point in the history
The directory does not contain the patch version.

    [BEE] fetching https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.37.3/util-linux-2.37.3.tar.xz
    --2022-01-25 09:16:07--  https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.37.3/util-linux-2.37.3.tar.xz
    Resolving mirrors.edge.kernel.org... 147.75.101.1, 2604:1380:2001:3900::1
    Connecting to mirrors.edge.kernel.org|147.75.101.1|:443... connected.
    HTTP request sent, awaiting response... 404 Not Found
    2022-01-25 09:16:08 ERROR 404: Not Found.

So only use the major and minor version.
  • Loading branch information
pmenzel committed Jan 25, 2022
1 parent 67cffec commit 657f311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util-linux.be0
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# BEE_VERSION util-linux-2.34-2

SRCURL[0]="https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v${PKGVERSION}/util-linux-${PKGVERSION}.tar.xz"
SRCURL[0]="https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v${PKGVERSION[2]}/util-linux-${PKGVERSION}.tar.xz"

# PATCHURL+=()

Expand Down

0 comments on commit 657f311

Please sign in to comment.