diff options
Diffstat (limited to 'repo/system/sysvinit.xibuild')
-rw-r--r-- | repo/system/sysvinit.xibuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/repo/system/sysvinit.xibuild b/repo/system/sysvinit.xibuild index fc4cb18..7a52901 100644 --- a/repo/system/sysvinit.xibuild +++ b/repo/system/sysvinit.xibuild @@ -6,10 +6,14 @@ PKG_VER=3.01 SOURCE=http://download.savannah.nongnu.org/releases/sysvinit/sysvinit-$PKG_VER.tar.xz DESC="The sysvinit system for controlling startup, running and shutdown of the system" -build () { +patch () { 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 +} + +package () { make ROOT=$PKG_DEST install } |