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.
This commit is contained in:
Alexander Bluhm 2024-04-01 22:56:49 +02:00
parent d450c1b439
commit 2b8492d622
No known key found for this signature in database
GPG key ID: C5F483ADDEE86380
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -158,7 +158,7 @@ support this mode of compilation (yet):
1. Mass-patch `Makefile.am` files to use `libexpatw.la` for a library name:
<br/>
`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 {} +`

View file

@ -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
}