You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AC_ARG_ENABLE(test-workaround, AS_HELP_STRING(--enable-test-workaround, \
[Guard against faccessat(2) that tells root all files are executable]),,
[enable_test_workaround=auto])
This is correct and uses all-upstream-autoconf macros. However, it highlights as such:
I'm not sure if ignoring the parentheses inside the bracketed argument to AS_HELP_STRING would be technically correct or not. What if you preceded it with m4_define([faccessat], [...])? But regardless, the current result, with an unbalanced bracket in the enclosing macro, seems incorrect. I'd welcome a pull request to fix this.
Consider the following snippet (part of dash):
This is correct and uses all-upstream-autoconf macros. However, it highlights as such:
Cf. also:
The text was updated successfully, but these errors were encountered: