Skip to content
Snippets Groups Projects
Commit 8b6eb65c authored by Bernhard Rosenkränzer's avatar Bernhard Rosenkränzer
Browse files

shadow: Remove -Werror=format-nonliteral from compiler flags


shadow uses non-literal format strings to integrate system information
into the login prompt. This is harmless because harmful format strings
are checked for (and in the worst case, the strings come from a file
that is writable by root only).

Removing -Werror=format-nonliteral here allows us to use
-Werror=format-nonliteral globally in OPTIMIZE_FOR=security mode
while keeping shadow building.

Signed-off-by: default avatarBernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
parent 16852bdd
No related branches found
No related tags found
No related merge requests found
# SPDX-FileCopyrightText: Huawei Inc.
# SPDX-License-Identifier: Apache-2.0
# shadow uses non-literal format strings to integrate system information
# into the login prompt. This is harmless because harmful format strings
# are checked for (and in the worst case, the strings come from a file
# that is writable by root only).
#
# Removing -Werror=format-nonliteral here allows us to use
# -Werror=format-nonliteral globally in OPTIMIZE_FOR=security mode
# while keeping shadow building.
TARGET_CFLAGS_remove = "-Werror=format-nonliteral"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment