about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-04-04 16:16:13 +0200
committerhexcoder- <heiko@hexco.de>2020-04-04 16:16:13 +0200
commit212925745417e29a5627edddbf837636860033aa (patch)
treec3dcb375fe65504252485aa33abd482929bb2eef
parenta7e9ce2e3370124e2175782f2c87eb7965a90e1d (diff)
downloadafl++-212925745417e29a5627edddbf837636860033aa.tar.gz
fix silly error with uname -s
-rw-r--r--libtokencap/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/libtokencap/Makefile b/libtokencap/Makefile
index 506d37cb..08316d78 100644
--- a/libtokencap/Makefile
+++ b/libtokencap/Makefile
@@ -24,9 +24,8 @@ 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 puts a space at the end, great!!
-UNAME_S =$(_UNAME_S: =)
-UNAME_S:sh=$(UNAME_CMD)        # BSD make
+UNAME_S =$(shell $(UNAME_CMD))# GNU make
+UNAME_S:sh=$(UNAME_CMD)       # BSD make
 _UNIQ=_QINU_
 
      _OS_DL = $(_UNIQ)$(UNAME_S)