Skip to content

Commit 108e28f

Browse files
committed
fix CFLAGS for extra libs
1 parent f1b4b38 commit 108e28f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

utils/libdislocator/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ HELPER_PATH = $(PREFIX)/lib/afl
1919
VERSION = $(shell grep '^\#define VERSION ' ../../config.h | cut -d '"' -f2)
2020

2121
CFLAGS ?= -O3 -funroll-loops -D_FORTIFY_SOURCE=2
22-
CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign
22+
override CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign
2323

2424
CFLAGS_ADD=$(USEHUGEPAGE:1=-DUSEHUGEPAGE)
2525
CFLAGS += $(CFLAGS_ADD)

utils/libtokencap/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ MAN_PATH ?= $(PREFIX)/share/man/man8
2121
VERSION = $(shell grep '^\#define VERSION ' ../../config.h | cut -d '"' -f2)
2222

2323
CFLAGS ?= -O3 -funroll-loops -D_FORTIFY_SOURCE=2
24-
CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign
24+
override CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign
2525

2626

2727
UNAME_S =$(shell uname -s)# GNU make

0 commit comments

Comments
 (0)