1
0
forked from ports/contrib

squashfs-tools: fix build against gcc 10

This commit is contained in:
Alexandr Savca 2020-12-29 14:53:24 +02:00
parent 2b0f24ae11
commit 3c87d86047
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37wJdmZIEcMzGP42Ii1l63jickiGjhOFQQTLXIKX+pqbUCQIKaSIn9qgOONTOwYN1W3xfzhSIZeiQa3u1EGwVg0=
SHA256 (Pkgfile) = f6b6e8dcb63ace533faedbe8ed09606bd68b206c236e305246b9aa532ff5ce6b
RWSagIOpLGJF311+lE31w5e8zxhbHU7Plqud37W2KqDM0GZV4cdrQNk2eqZQ6HifOL0RK0/o6D2GGigpCI9sjLSG0WxOzQb/kA0=
SHA256 (Pkgfile) = 6a81a5fdcc08ca2250b0b50485d6cefef352035653639995e1599d83c8faf8ac
SHA256 (.footprint) = ef8b3c9cd38c4fe9ee8f80af59cbd2282bccef8f8a2eb00332ed67fa8a24fb57
SHA256 (squashfs-tools-4.4.tar.gz) = a7fa4845e9908523c38d4acf92f8a41fdfcd19def41bd5090d7ad767a6dc75c3

View File

@ -10,6 +10,6 @@ source=(https://github.com/plougher/$name/archive/$version/$name-$version.tar.gz
build() {
cd $name-$version/$name
make GZIP_SUPPORT=1 LZO_SUPPORT=1 XZ_SUPPORT=1
make GZIP_SUPPORT=1 LZO_SUPPORT=1 XZ_SUPPORT=1 EXTRA_CFLAGS="-fcommon"
make install INSTALL_DIR=$PKG/sbin
}