Skip to content

Commit 04c60ce

Browse files
authored
Merge pull request #3242 from martin-frbg/issue3239
Handle inadvertent use of DYNAMIC_ARCH=0
2 parents 02087a6 + 0e73d20 commit 04c60ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile.x86

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# COMPILER_PREFIX = mingw32-
22

3-
ifndef DYNAMIC_ARCH
3+
ifneq ($(DYNAMIC_ARCH),1)
44
ADD_CPUFLAGS = 1
55
else
66
ifdef TARGET_CORE

Makefile.x86_64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ endif
99
endif
1010

1111

12-
ifndef DYNAMIC_ARCH
12+
ifneq ($(DYNAMIC_ARCH),1)
1313
ADD_CPUFLAGS = 1
1414
else
1515
ifdef TARGET_CORE

0 commit comments

Comments
 (0)