Hello, Commit f775ab3654357fcaad294b95efb0b1c16de1eda8 (“guile-snarf: skip -g* arguments to avoid build failure”) broke guile-snarf when passed arguments with whitespace, as in:
guile-snarf -o auth.x auth.c -DPACKAGE_STRING=\"Guile-SSH\ 0.10.2\" … The breakage comes from the fact that arguments are accumulated in a string, in the ‘cpp_args’ variable, so the shell loses information about word separation. Besides, filtering out ‘-g’ arguments seems dubious. WDYT? Ludo’.