From ca2ff6866936a326bd6ac70df2c7dee9e3c3a9fd Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sat, 12 Jul 2025 01:16:00 +0200 Subject: [PATCH] MT#62181 build: Add missing - for -std= option Fixes: commit a8b96bac1adc62e844fba3ffa6d9e24c80460135 Change-Id: Ica1c19171496810aba716713a922aae1a89f545e --- apps/xmlrpc2di/xmlrpc++/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/xmlrpc2di/xmlrpc++/test/Makefile b/apps/xmlrpc2di/xmlrpc++/test/Makefile index a853a529..d9db6c3b 100644 --- a/apps/xmlrpc2di/xmlrpc++/test/Makefile +++ b/apps/xmlrpc2di/xmlrpc++/test/Makefile @@ -5,7 +5,7 @@ CPPFLAGS = -I$(SRC) DEBUG = -g #OPTIMIZE = -O2 GCCWARN = -Wall -Wstrict-prototypes -CXXFLAGS = std=c++20 $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES) +CXXFLAGS = -std=c++20 $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES) LIB = ../libXmlRpc.a -lssl