diff options
author | davidovski <david@davidovski.xyz> | 2022-01-30 19:05:12 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-30 19:05:12 +0000 |
commit | 2eec6103068f3dce5ea33e3e9e0821f2a4b4f6af (patch) | |
tree | 0c09accf0c7c002875f019474dea39eab83585b6 /repo/system/efivar.xibuild | |
parent | 592b40a6c9bf084a95369f0bfdb3084cfdbb600d (diff) |
removed any unecessary curls from prepares
Diffstat (limited to 'repo/system/efivar.xibuild')
-rw-r--r-- | repo/system/efivar.xibuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/repo/system/efivar.xibuild b/repo/system/efivar.xibuild index e01d66b..e4b38b2 100644 --- a/repo/system/efivar.xibuild +++ b/repo/system/efivar.xibuild @@ -5,11 +5,14 @@ DEPS=() PKG_VER=37 SOURCE=https://github.com/rhboot/efivar/releases/download/$PKG_VER/efivar-$PKG_VER.tar.bz2 +ADDITIONAL=( + https://www.linuxfromscratch.org/patches/blfs/svn/efivar-$PKG_VER-gcc_9-1.patch + ) + DESC="Tools and libraries to manupulate EFI variables" prepare () { - curl -SsL https://www.linuxfromscratch.org/patches/blfs/svn/efivar-$PKG_VER-gcc_9-1.patch > efivar-$PKG_VER.patch - patch -Np1 -i efivar-$PKG_VER.patch + patch -Np1 -i efivar-$PKG_VER-gcc_9.1.patch } build () { |