diff options
author | Unknwon <u@gogs.io> | 2017-01-30 15:24:31 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-01-30 15:24:31 -0500 |
commit | a5afa372033faee273f8e02f6c99db8c66de851c (patch) | |
tree | 9f323072d32dc063b09e176baac4c0b6571faf14 | |
parent | 6bfbed06161aae4ef59b4eff989c99906b7836ab (diff) |
Makefile: fix string concatenation
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |