From 9806248599e31cbc40a6b0f3e6281536053bd849 Mon Sep 17 00:00:00 2001 From: Naushir Patuck Date: Wed, 15 Nov 2023 15:40:17 +0000 Subject: [PATCH] camera: Fix wrong package name for installation instructions s/rpicam-dev/libcamera-dev Fix the package name typo introduced in my last check-in. Signed-off-by: Naushir Patuck --- .../asciidoc/computers/camera/rpicam_apps_building.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/asciidoc/computers/camera/rpicam_apps_building.adoc b/documentation/asciidoc/computers/camera/rpicam_apps_building.adoc index 65d6aa822a..c5c7ebe69b 100644 --- a/documentation/asciidoc/computers/camera/rpicam_apps_building.adoc +++ b/documentation/asciidoc/computers/camera/rpicam_apps_building.adoc @@ -17,13 +17,13 @@ NOTE: When building on a Raspberry Pi with 1GB or less of RAM, there is a risk t You can rebuild `rpicam-apps` _without_ first rebuilding the whole of `libcamera` and `libepoxy`. If you do not need support for the GLES/EGL preview window then `libepoxy` can be omitted entirely. Mostly this will include Raspberry Pi OS Lite users, and they must be sure to use `-Denable_egl=false` when running `meson setup` later. These users should run: ---- -sudo apt install -y rpicam-dev libjpeg-dev libtiff5-dev +sudo apt install -y libcamera-dev libjpeg-dev libtiff5-dev ---- All other users should execute: ---- -sudo apt install -y rpicam-dev libepoxy-dev libjpeg-dev libtiff5-dev +sudo apt install -y libcamera-dev libepoxy-dev libjpeg-dev libtiff5-dev ---- If you want to use the Qt preview window, please also execute