diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-04-21 15:43:47 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-04-21 15:43:47 +0200 |
commit | ec72fbc08ad2734831b3ee2517f0121ad27afd89 (patch) | |
tree | 03468c6c2dd649d21b9e1bb1c8a6f81a66ab1ca1 | |
parent | f2f8e00fa6fa44a6a5bcf49f4a868292126e1f8a (diff) |
printf of find is non-portable, use awk
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ fi # Generate Makefile.am in contrib/ cd contrib rm -f Makefile.am -find wallet-core/backoffice/ -type f -printf ' %p \\\n' | sort > Makefile.am.ext +find wallet-core/backoffice/ -type f | sort | awk '{print " " $1 " \\" }' > Makefile.am.ext # Remove extra '\' at the end of the file truncate -s -2 Makefile.am.ext cat Makefile.am.in Makefile.am.ext >> Makefile.am |