Skip to content

Commit ae8b0d2

Browse files
authored
Set BUILD_ options to 1 instead of just defining them
1 parent 1da32cc commit ae8b0d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile.system

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,16 +1236,16 @@ ifeq ($(BUILD_HALF), 1)
12361236
CCOMMON_OPT += -DBUILD_HALF
12371237
endif
12381238
ifeq ($(BUILD_SINGLE), 1)
1239-
CCOMMON_OPT += -DBUILD_SINGLE
1239+
CCOMMON_OPT += -DBUILD_SINGLE=1
12401240
endif
12411241
ifeq ($(BUILD_DOUBLE), 1)
1242-
CCOMMON_OPT += -DBUILD_DOUBLE
1242+
CCOMMON_OPT += -DBUILD_DOUBLE=1
12431243
endif
12441244
ifeq ($(BUILD_COMPLEX), 1)
1245-
CCOMMON_OPT += -DBUILD_COMPLEX
1245+
CCOMMON_OPT += -DBUILD_COMPLEX=1
12461246
endif
12471247
ifeq ($(BUILD_COMPLEX16), 1)
1248-
CCOMMON_OPT += -DBUILD_COMPLEX16
1248+
CCOMMON_OPT += -DBUILD_COMPLEX16=1
12491249
endif
12501250

12511251
CCOMMON_OPT += -DVERSION=\"$(VERSION)\"

0 commit comments

Comments
 (0)