Explorar el Código

Makefile: fix string concatenation

Unknwon hace 8 años
padre
commit
a5afa37203
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Makefile

+ 1 - 1
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"