From 866f02db528b1c0d6ac598ba3804a0652fbc244b Mon Sep 17 00:00:00 2001 From: YannMagnin Date: Sun, 3 Dec 2023 16:50:48 +0100 Subject: [PATCH] vxOpenLibm - v1.0.0-dev6 : enable verbose by default during uninstall step *update* > [scripts] | [uninstall] change `--verbose` to `--quiet` flag | [uninstall] force enable verbose by default --- patches/CMakeLists.txt | 4 ++-- scripts/uninstall.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/patches/CMakeLists.txt b/patches/CMakeLists.txt index a41413b..bce20d3 100644 --- a/patches/CMakeLists.txt +++ b/patches/CMakeLists.txt @@ -1,6 +1,6 @@ # This cmake file will be dropped at the root of the openlibm repository -# folder and need to be the more generic as possible to support further update -# of the original project +# folder and need to be the more generic as possible to support further +# update of the original project cmake_minimum_required(VERSION 3.5) ## fetch source files diff --git a/scripts/uninstall.sh b/scripts/uninstall.sh index 421bcbf..c51c4e9 100755 --- a/scripts/uninstall.sh +++ b/scripts/uninstall.sh @@ -13,7 +13,7 @@ Usage: $0 [options...] Options: -h, --help display this help -y, --yes do not display validation step - -v, --verbose display more information during operations + --quiet do not display information during operations Notes: This project is a dependency of "sh-elf-vhex" compiler, manual @@ -26,13 +26,13 @@ EOF # Parse arguments #--- -verbose=false +verbose=true skip_input=false for arg; do case "$arg" in -h | --help) help;; -y | --yes) skip_input=true;; - -v | --verbose) verbose=true;; + --quiet) verbose=false;; *) echo "error: unreconized argument '$arg', giving up." >&2 exit 1