From f0d8e265d9de06e56fb26b404c89515816b72b7b Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 31 Jan 2016 17:12:22 +0200 Subject: [PATCH] Adjust the find command line The list syntax is a GNU extension, so use -false and -o to achieve the same effect. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 9497096..b853125 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -97,7 +97,7 @@ for i in $REQUIRED; do done findargs="$subdirs" if [ "$check_overlay" ]; then - findargs="$findargs -mindepth 1 ( -type d ! ( $check_overlay ) -prune ) ," + findargs="$findargs -mindepth 1 ( -type d ! ( $check_overlay ) -prune -false ) -o " fi headers=`find $findargs -name '*.h'` -- 2.43.0