Browse Source

Makefile: fix string concatenation

pull/4070/head
Unknwon 8 years ago
parent
commit
a5afa37203
No known key found for this signature in database
GPG Key ID: FB9F411CDD69BEC1
  1. 2
      Makefile

2
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"

Loading…
Cancel
Save