gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: printf of find is non-portable,


From: gnunet
Subject: [taler-exchange] branch master updated: printf of find is non-portable, use awk
Date: Sun, 21 Apr 2024 15:03:08 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 84b2619ce printf of find is non-portable, use awk
84b2619ce is described below

commit 84b2619ce107c71cf70421625a8ce880dcbf7f3a
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Apr 21 15:03:06 2024 +0200

    printf of find is non-portable, use awk
---
 bootstrap | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bootstrap b/bootstrap
index a2d0c3b5d..b749f0da9 100755
--- a/bootstrap
+++ b/bootstrap
@@ -42,7 +42,7 @@ fi
 # Generate Makefile.am in contrib/
 cd contrib
 rm -f Makefile.am
-find wallet-core/aml-backoffice/ -type f -printf '  %p \\\n' | sort > 
Makefile.am.ext
+find wallet-core/aml-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

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]