Fix create_executables_list.sh on Darwin

This commit is contained in:
Anthony Scemama 2023-04-18 11:37:26 +02:00
parent b2a593dd2f
commit fd1494482f
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ fi
cd ${QP_ROOT}/data
rm -f executables
EXES=$(find -L ${QP_ROOT}/src -maxdepth 2 -depth -executable -type f | grep -e "${QP_ROOT}/src/[^/]*/[^/]*$" |sort )
EXES=$(find -L ${QP_ROOT}/src -maxdepth 2 -depth -perm +111 -type f | grep -e "${QP_ROOT}/src/[^/]*/[^/]*$" |sort )
for EXE in $EXES
do