From cdc960fd1de2467a309f53ba6763a8248d81d343 Mon Sep 17 00:00:00 2001 From: Andrew <18502096+classicrocker883@users.noreply.github.com> Date: Wed, 1 Oct 2025 16:47:10 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Remove=20(BSD)=20-d=20flag=20fro?= =?UTF-8?q?m=20'find'=20(#28013)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buildroot/bin/build_all_examples | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildroot/bin/build_all_examples b/buildroot/bin/build_all_examples index d50937a732..12ece299d7 100755 --- a/buildroot/bin/build_all_examples +++ b/buildroot/bin/build_all_examples @@ -158,7 +158,7 @@ shopt -s nullglob export PAUSE=1 # Get a list of all folders that contain a file matching "Configuration*.h" -find -ds "$CBASE"/config/examples -type d -name 'Configuration.h' -o -name 'Configuration_adv.h' -print0 | while IFS= read -r -d $'\0' CONF; do +find -s "$CBASE"/config/examples -type d -name 'Configuration.h' -o -name 'Configuration_adv.h' -print0 | while IFS= read -r -d $'\0' CONF; do # Remove the file name and slash from the end of the path CONF=${CONF%/*}