mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
Merge pull request #853 from bluhm/find-path
Always provide path to find(1) for portability
This commit is contained in:
commit
5434a74081
3 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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 {} +`
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue