Skip to content

Commit 4aaa74e

Browse files
committed
Merge bitcoin/bitcoin#24604: build: fix copypasta in OpenBSD C{XX} flags
28f17c1 build: fix copypasta in OpenBSD C{XX} flags (fanquake) Pull request description: Introduced in #23998. ACKs for top commit: hebasto: ACK 28f17c1, I have reviewed the code and it looks OK, not tested on OpenBSD though. Tree-SHA512: d905161534075f518c8924d3c42cca7ff8d4898e559f1daa9bd03dac95b109b2c3e76790fb8bc65b9e45e8a59566825afbf4dc3734ad74617dfdf797430e486b
2 parents 95cac21 + 28f17c1 commit 4aaa74e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

depends/hosts/openbsd.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
openbsd_CFLAGS=-pipe
2-
openbsd_CFLAGS_CXXFLAGS=$(openbsd_CFLAGS)
2+
openbsd_CXXFLAGS=$(openbsd_CFLAGS)
33

4-
openbsd_CFLAGS_release_CFLAGS=-O2
5-
openbsd_CFLAGS_release_CXXFLAGS=$(openbsd_release_CFLAGS)
4+
openbsd_release_CFLAGS=-O2
5+
openbsd_release_CXXFLAGS=$(openbsd_release_CFLAGS)
66

7-
openbsd_CFLAGS_debug_CFLAGS=-O1
8-
openbsd_CFLAGS_debug_CXXFLAGS=$(openbsd_debug_CFLAGS)
7+
openbsd_debug_CFLAGS=-O1
8+
openbsd_debug_CXXFLAGS=$(openbsd_debug_CFLAGS)
99

1010
ifeq (86,$(findstring 86,$(build_arch)))
1111
i686_openbsd_CC=clang -m32

0 commit comments

Comments
 (0)