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/sysvinit.xibuild | |
parent | 592b40a6c9bf084a95369f0bfdb3084cfdbb600d (diff) |
removed any unecessary curls from prepares
Diffstat (limited to 'repo/system/sysvinit.xibuild')
-rw-r--r-- | repo/system/sysvinit.xibuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/repo/system/sysvinit.xibuild b/repo/system/sysvinit.xibuild index 63cd422..7d9add8 100644 --- a/repo/system/sysvinit.xibuild +++ b/repo/system/sysvinit.xibuild @@ -5,12 +5,17 @@ DEPS=(sh glibc) PKG_VER=3.01 SOURCE=http://download.savannah.nongnu.org/releases/sysvinit/sysvinit-$PKG_VER.tar.xz +ADDITIONAL=( + https://www.linuxfromscratch.org/patches/lfs/development/sysvinit-$PKG_VER-consolidated-1.patch + ) + DESC="The sysvinit system for controlling startup, running and shutdown of the system" + prepare () { - curl https://www.linuxfromscratch.org/patches/lfs/development/sysvinit-$PKG_VER-consolidated-1.patch > sysvinit-$PKG_VER-consolidated-1.patch patch -Np1 -i sysvinit-$PKG_VER-consolidated-1.patch } + build () { make } |