diff options
author | Juergen Daubert <jue@jue.li> | 2020-05-28 12:00:17 +0000 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2020-05-28 12:00:17 +0000 |
commit | 0d376df8864e3c514d1152a82ebe4aea7cd17aaa (patch) | |
tree | a0723f4cfa4215e83701a5433e6152358a285e81 /lilo | |
parent | 830f085e8292f9868fcc6bc77daf2f10b35a17ad (diff) | |
download | opt-0d376df8864e3c514d1152a82ebe4aea7cd17aaa.tar.gz opt-0d376df8864e3c514d1152a82ebe4aea7cd17aaa.tar.xz |
lilo: fix build with gcc 10
Diffstat (limited to 'lilo')
-rw-r--r-- | lilo/.signature | 4 | ||||
-rw-r--r-- | lilo/Pkgfile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lilo/.signature b/lilo/.signature index 3f6a572bf..29275bd92 100644 --- a/lilo/.signature +++ b/lilo/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/Xgb7m9XV0msdb1GmBfnq5bcJlCgCrmwO8UhFaRD7RhqgRZJlULKIS43uSAiWBqsmFwIZRy7Fd74aGkbWh2DqgA= -SHA256 (Pkgfile) = db51a463197e0149e3eb3a3c2615e045b7d4e1cfca5ac4e4ad4ea7f5cea017e1 +RWSE3ohX2g5d/c514R/XqIzruLT1KgiuUXC6yT8d20Fy817+aM4orYMroFkXxbiWEBj8nmlnFZeh/cvf75//cxXeuh2o7ywnZgs= +SHA256 (Pkgfile) = 3b66464532bc82d517a84cc9e373a6a026136ebd0cc60b8883348d329a64615a SHA256 (.footprint) = 0ec118c0155abdcd2374fbf1454e52ff9619bd8e4017e0268345b82a95c3173c SHA256 (lilo-24.2.tar.gz) = e158f19de4560c935ebe0507c21b79bff17618b9230d8076fe8c5fff9fdbd5b1 SHA256 (lilo-config.patch) = ad7d556831938a9d4441b2cd4f3ad9c06210cd1c9f1b27356b2b19c5b042996b diff --git a/lilo/Pkgfile b/lilo/Pkgfile index c339530d6..f61f692ae 100644 --- a/lilo/Pkgfile +++ b/lilo/Pkgfile @@ -5,14 +5,14 @@ name=lilo version=24.2 -release=1 +release=2 source=(https://www.joonet.de/lilo/ftp/sources/$name-$version.tar.gz \ $name-config.patch lilo.conf) build() { cd $name-$version patch -p1 -i $SRC/$name-config.patch - make all + make CFLAGS="$CFLAGS -fcommon" all make DESTDIR=$PKG install install -m 644 $SRC/lilo.conf $PKG/etc } |