aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2017-01-30 15:24:31 -0500
committerUnknwon <u@gogs.io>2017-01-30 15:24:31 -0500
commita5afa372033faee273f8e02f6c99db8c66de851c (patch)
tree9f323072d32dc063b09e176baac4c0b6571faf14
parent6bfbed06161aae4ef59b4eff989c99906b7836ab (diff)
Makefile: fix string concatenation
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1a60b686..407b3b3b 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ OS := $(shell uname)
TAGS = ""
BUILD_FLAGS = "-v"
ifeq ($(OS),Linux)
- BUILD_FLAGS += " -buildmode=pie"
+ BUILD_FLAGS += "-buildmode=pie"
endif
RELEASE_ROOT = "release"