1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Replace uses of which(1) with command -v

This commit is contained in:
sfan5 2021-10-25 21:56:25 +02:00 committed by rubenwardy
parent 4114e3047b
commit ea1396f856
4 changed files with 8 additions and 8 deletions

View file

@ -19,9 +19,9 @@ builddir="$( cd "$builddir" && pwd )"
libdir=$builddir/libs
# Test which win32 compiler is present
which i686-w64-mingw32-gcc &>/dev/null &&
command -v i686-w64-mingw32-gcc >/dev/null &&
toolchain_file=$dir/toolchain_i686-w64-mingw32.cmake
which i686-w64-mingw32-gcc-posix &>/dev/null &&
command -v i686-w64-mingw32-gcc-posix >/dev/null &&
toolchain_file=$dir/toolchain_i686-w64-mingw32-posix.cmake
if [ -z "$toolchain_file" ]; then
@ -146,7 +146,7 @@ cmake -S $sourcedir -B . \
-DCURL_INCLUDE_DIR=$libdir/curl/include \
-DCURL_LIBRARY=$libdir/curl/lib/libcurl.dll.a \
\
-DGETTEXT_MSGFMT=`which msgfmt` \
-DGETTEXT_MSGFMT=`command -v msgfmt` \
-DGETTEXT_DLL="$gettext_dlls" \
-DGETTEXT_INCLUDE_DIR=$libdir/gettext/include \
-DGETTEXT_LIBRARY=$libdir/gettext/lib/libintl.dll.a \

View file

@ -19,9 +19,9 @@ builddir="$( cd "$builddir" && pwd )"
libdir=$builddir/libs
# Test which win64 compiler is present
which x86_64-w64-mingw32-gcc &>/dev/null &&
command -v x86_64-w64-mingw32-gcc >/dev/null &&
toolchain_file=$dir/toolchain_x86_64-w64-mingw32.cmake
which x86_64-w64-mingw32-gcc-posix &>/dev/null &&
command -v x86_64-w64-mingw32-gcc-posix >/dev/null &&
toolchain_file=$dir/toolchain_x86_64-w64-mingw32-posix.cmake
if [ -z "$toolchain_file" ]; then
@ -146,7 +146,7 @@ cmake -S $sourcedir -B . \
-DCURL_INCLUDE_DIR=$libdir/curl/include \
-DCURL_LIBRARY=$libdir/curl/lib/libcurl.dll.a \
\
-DGETTEXT_MSGFMT=`which msgfmt` \
-DGETTEXT_MSGFMT=`command -v msgfmt` \
-DGETTEXT_DLL="$gettext_dlls" \
-DGETTEXT_INCLUDE_DIR=$libdir/gettext/include \
-DGETTEXT_LIBRARY=$libdir/gettext/lib/libintl.dll.a \