Skip to content

Commit

Permalink
fix crosscompiler path
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Sep 11, 2024
1 parent 8cf69ea commit 46b4e0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.rpi
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ COPY . .
ENV PATH /depot_tools:$PATH

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates build-essential gcc wget git python3 python3-pkg-resources xz-utils cmake make pkg-config \
&& wget -qO- ${CROSSCOMPILER} | tar xz -C /webrtc \
&& export PATH=$(ls -d /webrtc/cross-pi-gcc-*/bin):$PATH \
&& wget -qO- ${CROSSCOMPILER} | tar xz -C /build \
&& export PATH=$(ls -d /build/cross-pi-gcc-*/bin):$PATH \
&& git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /depot_tools \
&& mkdir ../webrtc \
&& cd ../webrtc \
Expand Down

0 comments on commit 46b4e0d

Please sign in to comment.