2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Fix a typo.

This commit is contained in:
Todd C. Miller 2023-01-27 14:44:45 -07:00
parent 94eafd2f08
commit 1977f98d21
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -33757,7 +33757,7 @@ fi
fi
# Linker-specific hardening flags.
if test a X"$with_gnu_ld" = X"yes"; then
if test X"$with_gnu_ld" = X"yes"; then
# GNU ld, and similar (gold, lld, etc).
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-z,relro" >&5
printf %s "checking whether the linker accepts -Wl,-z,relro... " >&6; }

View File

@ -115,7 +115,7 @@ AC_DEFUN([SUDO_CHECK_HARDENING], [
fi
# Linker-specific hardening flags.
if test a X"$with_gnu_ld" = X"yes"; then
if test X"$with_gnu_ld" = X"yes"; then
# GNU ld, and similar (gold, lld, etc).
AX_CHECK_LINK_FLAG([-Wl,-z,relro], [AX_APPEND_FLAG([-Wl,-z,relro], [HARDENING_LDFLAGS])])
AX_CHECK_LINK_FLAG([-Wl,-z,now], [AX_APPEND_FLAG([-Wl,-z,now], [HARDENING_LDFLAGS])])