mirror of https://github.com/openwrt/packages.git
gptfdisk: fix some warnings treated as errors
fixes error: format not a string literal and no format arguments [-Werror=format-security] during compile Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>pull/17995/head
parent
076449f504
commit
5899a16f4b
|
@ -72,7 +72,7 @@ define Package/fixparts/description
|
|||
Master Boot Record (MBR) partition tables
|
||||
endef
|
||||
|
||||
TARGET_CXXFLAGS += -std=c++11 -ffunction-sections -fdata-sections -fno-rtti -flto
|
||||
TARGET_CXXFLAGS += -std=c++11 -ffunction-sections -fdata-sections -fno-rtti -flto -Wno-format-security
|
||||
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
|
||||
|
||||
define Package/gdisk/install
|
||||
|
|
Loading…
Reference in New Issue