@cryptotaxi247 / kubo / commits / 1d3e03936

make: fix PATH escaping

License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>

Jakub Sztandera committed Feb 12, 2017 at 10:26 UTC 1d3e0393678706496bc51baedfe444cc5dc7a3f8
1 file changed +1 -1
Makefile
+1 -1
@@ -1,6 +1,6 @@
1 # General tools
2
3 -SHELL=PATH=$(PATH) /bin/sh
3 +SHELL=PATH='$(PATH)' /bin/sh
4
5 PROTOC = protoc --gogo_out=. --proto_path=.:/usr/local/opt/protobuf/include:$(dir $@) $<
6