Don't put the --recursive option in .astylerc.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 27 Mar 2022 18:58:44 +0000 (20:58 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 27 Mar 2022 18:58:44 +0000 (20:58 +0200)
When calling astyle manually without wildcards in the filename(s),
astyle will refuse to work if the --recursive option is used. Remove it
from .astylerc and add the option to the command line when the "reformat"
build target is used.

.astylerc
meson.build

index 4b89b18..8d50422 100644 (file)
--- a/.astylerc
+++ b/.astylerc
@@ -2,7 +2,6 @@
 --convert-tabs
 --exclude=subprojects
 --exclude=build
---recursive
 -i
 -j
 -f
@@ -13,4 +12,3 @@
 -k3
 -w
 --formatted
-
index f96fb32..38062a9 100644 (file)
@@ -121,7 +121,7 @@ prog_reformat = find_program('astyle', native: true, required: false)
 if prog_reformat.found()
   run_target('reformat', command: [
     prog_reformat,
-    '--options=@SOURCE_ROOT@/.astylerc',
+    '--options=@SOURCE_ROOT@/.astylerc', '--recursive',
     '@SOURCE_ROOT@/*.c', '@SOURCE_ROOT@/*.h',
   ])
 endif