]> Cypherpunks.ru repositories - goredo.git/commitdiff
find -exec optimization
authorSergey Matveev <stargrave@stargrave.org>
Sun, 18 Jul 2021 11:42:06 +0000 (14:42 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sun, 18 Jul 2021 11:43:11 +0000 (14:43 +0300)
doc/www.do
makedist.sh

index ca97c6cd901325fae3cf2b75ac070bd718d052d7..660e142bae19a0259d4a2031c67d57c3bacd7780 100644 (file)
@@ -13,5 +13,5 @@ ${MAKEINFO:=makeinfo} --html \
     --set-customization-variable CLOSE_QUOTE_SYMBOL=\" \
     --set-customization-variable OPEN_QUOTE_SYMBOL=\" \
     -o $html index.texi
-find $html -type d -exec chmod 755 {} \;
-find $html -type f -exec chmod 644 {} \;
+find $html -type d -exec chmod 755 {} +
+find $html -type f -exec chmod 644 {} +
index 85d815389b370676f3646eaa5dc3a9688a0869ea..8fcafa7788c5225307b1662b86db4112c3a601f9 100755 (executable)
@@ -77,10 +77,10 @@ cd ..
 ########################################################################
 
 rm -rf *.texi .redo .git .gitignore doc makedist.sh VERSION.do
-find . -type d -exec chmod 755 {} \;
-find . -type f -exec chmod 644 {} \;
-find t/redo-sh.tests -name test -exec chmod +x {} \+
-find t -name wrapper.rc -exec chmod +x {} \+
+find . -type d -exec chmod 755 {} +
+find . -type f -exec chmod 644 {} +
+find t/redo-sh.tests -name test -exec chmod +x {} +
+find t -name wrapper.rc -exec chmod +x {} +
 chmod +x t/apenwarr/sleep t/goredo-*.t
 
 cd ..