Skip to content

Commit

Permalink
building: prerequisites: fix Ubuntu Dockerfiles
Browse files Browse the repository at this point in the history
When building on Ubuntu 20.04 or 22.04, libcap-ng-dev is needed, not
libcap-dev. Without the latter, the QEMU build fails when "make
XEN_BOOT=y" is invoked.

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Joakim Bech <joakim.bech@linaro.org>
  • Loading branch information
jforissier authored and jbech-linaro committed Oct 10, 2023
1 parent 6b987cf commit 549bbb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion building/Dockerfile.Ubuntu-20.04
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apt install -y \
git \
iasl \
libattr1-dev \
libcap-dev \
libcap-ng-dev \
libfdt-dev \
libftdi-dev \
libglib2.0-dev \
Expand Down
2 changes: 1 addition & 1 deletion building/Dockerfile.Ubuntu-22.04
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apt install -y \
gdisk \
git \
libattr1-dev \
libcap-dev \
libcap-ng-dev \
libfdt-dev \
libftdi-dev \
libglib2.0-dev \
Expand Down

0 comments on commit 549bbb1

Please sign in to comment.