From dcd2b348c277a9dddb3dea385eed0e2d2b845718 Mon Sep 17 00:00:00 2001 From: InfRandomness Date: Sun, 13 Jun 2021 21:46:35 +0200 Subject: [PATCH 1/3] Add missing suse packages --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index c326728..afde5d0 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -324,7 +324,7 @@ suse() fi fi echo "Installing necessary build tools..." - sudo zypper install gcc gcc-c++ glibc-devel-32bit nasm make fuse-devel cmake + sudo zypper install gcc gcc-c++ glibc-devel-32bit nasm make fuse-devel cmake openssl automake gettext-tools libtool po4a patch flex gperf } ############################################################################## From ae78a96ddfa3a1b9063ddacbe21d632e1a1d0a50 Mon Sep 17 00:00:00 2001 From: InfRandomness Date: Mon, 14 Jun 2021 02:40:07 +0200 Subject: [PATCH 2/3] Add missing fedora packages --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index afde5d0..19ff8d2 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -286,7 +286,7 @@ fedora() fi fi # Use rpm -q to check if it's already installed - PKGS=$(for pkg in gcc gcc-c++ glibc-devel.i686 nasm make fuse-devel cmake texinfo gettext-devel bison flex perl-HTML-Parser po4a; do rpm -q $pkg > /dev/null || echo $pkg; done) + PKGS=$(for pkg in gcc gcc-c++ glibc-devel.i686 nasm make fuse-devel cmake texinfo gettext-devel bison flex perl-HTML-Parser po4a openssl patch automake libtool perl-Pod-Html perl-FindBin gperf libpng-devel; do rpm -q $pkg > /dev/null || echo $pkg; done) # If the list of packages is not empty, install missing COUNT=$(echo $PKGS | wc -w) if [ $COUNT -ne 0 ]; then From 0dbd0ee4d620cb14b9589931d96f9dbe0ce0a212 Mon Sep 17 00:00:00 2001 From: InfRandomness Date: Mon, 14 Jun 2021 18:00:59 +0200 Subject: [PATCH 3/3] Add missing solus packages --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 19ff8d2..b065c69 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -389,7 +389,7 @@ solus() echo "Installing necessary build tools..." #if guards are not necessary with eopkg since it does nothing if latest version is already installed - sudo eopkg it fuse-devel git gcc g++ libgcc-32bit libstdc++-32bit nasm make cmake + sudo eopkg it fuse-devel git gcc g++ libgcc-32bit libstdc++-32bit nasm make cmake binutils-gold glibc-devel pkg-config fuse2-devel linux-headers rsync automake autoconf m4 libtool-devel po4a patch bison flex gperf libpng-devel perl-html-parser } ######################################################################