Skip to content

Commit fe3917a

Browse files
authored
Fix build flags for min macOS version (acidanthera#1)
1 parent 9e0c1c9 commit fe3917a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LDFLAGS ?=
3333
UNAME_S := $(shell uname -s)
3434
ifeq ($(UNAME_S),Darwin)
3535
CFLAGS += -mmacosx-version-min=10.7
36-
LDFLAGS += -Wl,-framework,CoreFoundation -Wl,-framework,IOKit
36+
LDFLAGS += -Wl,-framework,CoreFoundation -Wl,-framework,IOKit -mmacosx-version-min=10.7
3737
endif
3838

3939
DESTDIR =

0 commit comments

Comments
 (0)