Skip to content

Commit

Permalink
Adjust to Autoconf-2.71
Browse files Browse the repository at this point in the history
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
ppisar committed Nov 26, 2021
1 parent 6d25634 commit c261979
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,10 @@ AC_FUNC_MALLOC
AC_CHECK_FUNCS( \
strcpy \
strdup \
strchr \
strlen \
strcat \
strtok \
strchr \
strlen \
strcat \
strtok \
)
AC_CHECK_FUNCS([getopt_long])

Expand Down

0 comments on commit c261979

Please sign in to comment.