Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Autoconf-2.71 fixed handling traling white spaces (marked with an underscore here): AC_CHECK_FUNCS( \ strcpy \ strdup \ strchr \_ strlen \_ strcat \_ strtok \_ ) and correctly converted them to this shell code: for ac_func in strcpy strdup strchr \ strlen \ strcat \ strtok \ do : [...] done This patch removes the trailing new lines. <https://bugzilla.redhat.com/show_bug.cgi?id=1999491> <https://savannah.gnu.org/support/index.php?110571>
- Loading branch information