0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 21:53:31 -05:00

Merge pull request 'Use apt-get instead of apt' (!73) from keypresser/librewolf-source:apt-get into main

Reviewed-on: https://codeberg.org/librewolf/source/pulls/73
This commit is contained in:
Malte Jürgens 2024-02-07 18:54:54 +00:00
commit 06e1a2f2ca

View file

@ -112,7 +112,7 @@ $(lw_source_tarball) : $(lw_source_dir)
debs=python3 python3-dev python3-pip debs=python3 python3-dev python3-pip
rpms=python3 python3-devel rpms=python3 python3-devel
bootstrap : $(lw_source_dir) bootstrap : $(lw_source_dir)
(sudo apt -y install $(debs); true) (sudo apt-get -y install $(debs); true)
(sudo rpm -y install $(rpms); true) (sudo rpm -y install $(rpms); true)
(cd $(lw_source_dir) && MOZBUILD_STATE_PATH=$$HOME/.mozbuild ./mach --no-interactive bootstrap --application-choice=browser) (cd $(lw_source_dir) && MOZBUILD_STATE_PATH=$$HOME/.mozbuild ./mach --no-interactive bootstrap --application-choice=browser)