1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-12-01 06:08:08 +00:00

Replace apt-get by apt

This commit is contained in:
Carles Fernandez
2025-03-15 09:41:05 +01:00
parent b60368038a
commit b0b41b194f
10 changed files with 33 additions and 33 deletions

View File

@@ -154,7 +154,7 @@ else()
elseif(${LINUX_DISTRIBUTION} MATCHES "openSUSE")
message(STATUS " sudo zypper install libboost_iostreams-devel")
else()
message(STATUS " sudo apt-get install libboost-iostreams-dev")
message(STATUS " sudo apt install libboost-iostreams-dev")
endif()
endif()
endif()

View File

@@ -32,7 +32,7 @@ The building requires two extra dependencies: the Boost Iostreams library and
the program `uncompress`:
- The Boost Iostreams library can be installed through a package:
- In Debian / Ubuntu: `sudo apt-get install libboost-iostreams-dev`
- In Debian / Ubuntu: `sudo apt install libboost-iostreams-dev`
- In Fedora / CentOS: `sudo yum install boost-iostreams`
- In OpenSUSE: `sudo zypper install libboost_iostreams-devel`
- In Arch Linux: included in `boost-libs` package.