On 12/08/21 15:05, Dr. David Alan Gilbert wrote:
In configure line 4464: if !(GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then ^-- SC1035: You are missing a required space after the !.which hmm I've not quite got my head around yet; but maybe that one is real.
Trying ! (echo abc); echo $? !(echo abc); echo $? both work in bash, but the latter fails with zsh: abc 1 ff:2: no matches found: !(echo abc) Paolo