fix tumbleweed error

This commit is contained in:
Malte Jürgens 2022-07-23 20:29:46 +02:00
parent 0f68c8961c
commit 0e6aef968e
No known key found for this signature in database
GPG Key ID: D29FBD5F93C0CFC3
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ ENV TZ=Europe/Amsterdam
# dependencies needed to run ./mach bootstrap
RUN ( apt-get -y update && apt-get -y upgrade && apt-get -y install python3 python3-dev python3-pip wget dpkg-sig ; true)
RUN ( dnf -y upgrade && dnf -y install python3 python3-devel wget rpm-build rpm-sign ; true)
RUN ( zypper -n in mercurial python3 python3-pip python3-devel wget rpm-build lld ; true)
RUN ( zypper -n in mercurial python3 python3-pip python3-devel wget rpm-build ; true)
# run the bootstrap
RUN cd /tmp &&\

View File

@ -18,7 +18,7 @@ build : $(outfile) $(outfile).sha256sum
$(outfile) :
${MAKE} work
ln -sfv ./lw/mozconfig.new.without-bootstrap work/librewolf-$(version)-$(source_release)/mozconfig
[ "$(distro)" != "tumbleweed" ] && ln -sfv ./lw/mozconfig.new.without-bootstrap work/librewolf-$(version)-$(source_release)/mozconfig
ifeq ($(use_docker),false)
(cd work/librewolf-$(version)-$(source_release) && ./mach build && echo 'Packaging... (output hidden)' && cat browser/locales/shipped-locales | xargs ./mach package-multi-locale --locales >/dev/null)
else