diff --git a/misc/deps_linux/ubuntu-2204.sh b/misc/deps_linux/ubuntu-2204.sh index 8c091d31c8..af190d2c29 100755 --- a/misc/deps_linux/ubuntu-2204.sh +++ b/misc/deps_linux/ubuntu-2204.sh @@ -15,7 +15,7 @@ if [[ "$1" == "--ensure-deps-noninteractive" ]]; then fi set -x APT_ARGS="-y" - add-apt-repository universe + # add-apt-repository universe apt-get update apt-get full-upgrade $APT_ARGS apt-get install $APT_ARGS sudo @@ -44,7 +44,7 @@ packages+='build-essential ' packages+='cmake ' packages+='clang-15 ' packages+='clang-format-15 ' # you will need it to pass clang-format check -packages+='ninja ' # would likely build with the regular make, but I haven't tried +packages+='ninja-build ' # would likely build with the regular make, but I haven't tried # These are needed for packages+='nodejs ' diff --git a/misc/deps_linux/ubuntu-2404.sh b/misc/deps_linux/ubuntu-2404.sh index 80d030886c..6a9f5bf9d0 100755 --- a/misc/deps_linux/ubuntu-2404.sh +++ b/misc/deps_linux/ubuntu-2404.sh @@ -15,7 +15,7 @@ if [[ "$1" == "--ensure-deps-noninteractive" ]]; then fi set -x APT_ARGS="-y" - add-apt-repository universe + # add-apt-repository universe apt-get update apt-get full-upgrade $APT_ARGS apt-get install $APT_ARGS sudo @@ -44,7 +44,7 @@ packages+='build-essential ' packages+='cmake ' packages+='clang-15 ' packages+='clang-format-15 ' # you will need it to pass clang-format check -packages+='ninja ' # would likely build with the regular make, but I haven't tried +packages+='ninja-build ' # would likely build with the regular make, but I haven't tried # These are needed for packages+='nodejs '