From 2b8492d622913829ff69c803acfbe2ae6673f471 Mon Sep 17 00:00:00 2001 From: Alexander Bluhm Date: Mon, 1 Apr 2024 22:56:49 +0200 Subject: [PATCH] Always provide path to find. Running find without path is a GNU extension. GNU find uses current directory as starting-point in this case. Better always use an explicit . in build scripts to support find on other systems. --- expat/Makefile.am | 2 +- expat/README.md | 2 +- expat/qa.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/expat/Makefile.am b/expat/Makefile.am index 9c2259d2..18d3221c 100644 --- a/expat/Makefile.am +++ b/expat/Makefile.am @@ -114,7 +114,7 @@ buildlib: @echo 'ERROR: is no longer supported. INSTEAD please:' >&2 @echo 'ERROR:' >&2 @echo 'ERROR: * Mass-patch Makefile.am, e.g.' >&2 - @echo 'ERROR: # find -name Makefile.am -exec sed \' >&2 + @echo 'ERROR: # find . -name Makefile.am -exec sed \' >&2 @echo 'ERROR: -e "s,libexpat\.la,libexpatw.la," \' >&2 @echo 'ERROR: -e "s,libexpat_la,libexpatw_la," \' >&2 @echo 'ERROR: -i {} +' >&2 diff --git a/expat/README.md b/expat/README.md index 3944d021..3e949063 100644 --- a/expat/README.md +++ b/expat/README.md @@ -158,7 +158,7 @@ support this mode of compilation (yet): 1. Mass-patch `Makefile.am` files to use `libexpatw.la` for a library name:
- `find -name Makefile.am -exec sed + `find . -name Makefile.am -exec sed -e 's,libexpat\.la,libexpatw.la,' -e 's,libexpat_la,libexpatw_la,' -i {} +` diff --git a/expat/qa.sh b/expat/qa.sh index a11a1bfa..54984986 100755 --- a/expat/qa.sh +++ b/expat/qa.sh @@ -192,7 +192,7 @@ run_processor() { local DOT_FORMAT="${DOT_FORMAT:-svg}" local o="callgraph.${DOT_FORMAT}" ANNOUNCE "egypt ...... | dot ...... > ${o}" - find -name '*.expand' \ + find . -name '*.expand' \ | sort \ | xargs -r egypt \ | unflatten -c 20 \ @@ -209,7 +209,7 @@ run_processor() { ) done - RUN find -name '*.gcov' | sort + RUN find . -name '*.gcov' | sort ;; esac }