Skip to content

Commit

Permalink
Merge pull request #5152 from vsebe/make.41
Browse files Browse the repository at this point in the history
Install make 4.1 on CentOS 6 x86 docker slave
  • Loading branch information
llxia authored Mar 19, 2019
2 parents d9d6aa5 + c2cbd05 commit 288be72
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion buildenv/jenkins/docker-slaves/x86/centos6.9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,21 @@ RUN wget -O - http://cpanmin.us | perl - --self-upgrade \
&& cpanm Text::CSV \
&& cpanm JSON \
&& cpanm XML::Parser


# Install make 4.1
RUN cd /tmp \
&& wget -O make-4.1.tar.gz "http://ftp.gnu.org/gnu/make/make-4.1.tar.gz" \
&& tar xvf make-4.1.tar.gz \
&& rm -f make-4.1.tar.gz \
&& cd make-4.1/ \
&& ./configure \
&& make \
&& make install \
&& rm -f /usr/local/bin/gmake \
&& ln -s /usr/local/bin/make /usr/local/bin/gmake \
&& cd .. \
&& rm -rf /tmp/make-4.1

# Install nasm-2.13.03
RUN cd /tmp \
&& wget https://www.nasm.us/pub/nasm/releasebuilds/2.13.03/nasm-2.13.03.tar.gz \
Expand Down

0 comments on commit 288be72

Please sign in to comment.