diff options
author | hexcoder- <heiko@hexco.de> | 2020-04-04 16:45:59 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-09 10:23:37 +0200 |
commit | 62b6af693d4802b776a5103895bb49559e835607 (patch) | |
tree | c8addfbecd685bba398986b2378398689e005f25 /libtokencap | |
parent | a49988afbff2f6e02210c517e202a7fa9699ffaa (diff) | |
download | afl++-62b6af693d4802b776a5103895bb49559e835607.tar.gz |
Makefile bugfix macros are generally not expanded in shell calls
Diffstat (limited to 'libtokencap')
-rw-r--r-- | libtokencap/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libtokencap/Makefile b/libtokencap/Makefile index 08316d78..75a8d337 100644 --- a/libtokencap/Makefile +++ b/libtokencap/Makefile @@ -23,9 +23,9 @@ VERSION = $(shell grep '^\#define VERSION ' ../config.h | cut -d '"' -f2) CFLAGS ?= -O3 -funroll-loops -D_FORTIFY_SOURCE=2 CFLAGS += -I ../include/ -Wall -g -Wno-pointer-sign -UNAME_CMD=uname -s -UNAME_S =$(shell $(UNAME_CMD))# GNU make -UNAME_S:sh=$(UNAME_CMD) # BSD make + +UNAME_S =$(shell uname -s)# GNU make +UNAME_S:sh=uname -s # BSD make _UNIQ=_QINU_ _OS_DL = $(_UNIQ)$(UNAME_S) |