mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-25 22:14:34 +00:00
fix(devcontainer): move installation of autoconf and automake
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
parent
bbb70eb621
commit
027d77ed66
@ -24,20 +24,6 @@ RUN apt-get -y install --no-install-recommends \
|
|||||||
file \
|
file \
|
||||||
python3-dev
|
python3-dev
|
||||||
|
|
||||||
# Required packages for building gcc & binutils
|
|
||||||
RUN <<EOF
|
|
||||||
wget https://launchpad.net/ubuntu/+archive/primary/+files/autoconf_2.69-11.1_all.deb -O /tmp/autoconf.deb
|
|
||||||
sudo dpkg --force-all -i /tmp/autoconf.deb
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Required packages for building gcc & binutils
|
|
||||||
RUN <<EOF
|
|
||||||
wget https://ftp.gnu.org/gnu/automake/automake-1.15.1.tar.gz -O /tmp/automake.tar.gz
|
|
||||||
tar -xzf /tmp/automake.tar.gz -C /tmp
|
|
||||||
cd /tmp/automake-1.15.1
|
|
||||||
./configure && make && sudo make install
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Required packages for building qemu
|
# Required packages for building qemu
|
||||||
RUN apt-get -y install --no-install-recommends \
|
RUN apt-get -y install --no-install-recommends \
|
||||||
git \
|
git \
|
||||||
@ -122,3 +108,20 @@ echo PATH=$PATH:/workspaces/Fennix/cross/bin >> /etc/profile
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
ENV CHMOD_KVM=1
|
ENV CHMOD_KVM=1
|
||||||
|
|
||||||
|
# Remove autoconf & automake
|
||||||
|
RUN sudo apt-get -y remove autoconf automake
|
||||||
|
|
||||||
|
# Required packages for building gcc & binutils
|
||||||
|
RUN <<EOF
|
||||||
|
wget https://launchpad.net/ubuntu/+archive/primary/+files/autoconf_2.69-11.1_all.deb -O /tmp/autoconf.deb
|
||||||
|
sudo dpkg --force-all -i /tmp/autoconf.deb
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Required packages for building gcc & binutils
|
||||||
|
RUN <<EOF
|
||||||
|
wget https://ftp.gnu.org/gnu/automake/automake-1.15.1.tar.gz -O /tmp/automake.tar.gz
|
||||||
|
tar -xzf /tmp/automake.tar.gz -C /tmp
|
||||||
|
cd /tmp/automake-1.15.1
|
||||||
|
./configure && make && sudo make install
|
||||||
|
EOF
|
||||||
|
Loading…
x
Reference in New Issue
Block a user