Skip to content

Commit

Permalink
Removes duplicate -MD argument. The prog.mk already contains the nece…
Browse files Browse the repository at this point in the history
…ssary -MMD instead, and clang complains if both are set.
  • Loading branch information
balazsracz committed Feb 4, 2022
1 parent fa927d8 commit f03967e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/mach.x86_64.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ ENDGROUP :=

INCLUDES += -I$(OPENMRNPATH)/include/mach

CFLAGS = -c -g -O0 -Wall -Werror -MD -MP -std=c99 -fno-stack-protector \
CFLAGS = -c -g -O0 -Wall -Werror -MP -std=c99 -fno-stack-protector \
-D_GNU_SOURCE
CXXFLAGS = -c -g -O0 -Wall -Werror -MD -MP -std=c++14 -fno-stack-protector \
CXXFLAGS = -c -g -O0 -Wall -Werror -MP -std=c++14 -fno-stack-protector \
-D_GNU_SOURCE

LDFLAGS = -g
Expand Down

0 comments on commit f03967e

Please sign in to comment.