Skip to content

Commit 8d24fbd

Browse files
committed
Remove non-breaking spaces in comments
Signed-off-by: Guillaume Delacour <gui@iroqwa.org>
1 parent e383b9d commit 8d24fbd

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Makefile.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PKG_NAME := docker-machine
55
DEBUG ?=
66
# If true, "build" will produce a static binary (cross compile always produce static build regardless)
77
STATIC ?=
8-
# If true, turn on verbose output for build
8+
# If true, turn on verbose output for build
99
VERBOSE ?=
1010
# Build tags
1111
BUILDTAGS ?=
@@ -16,7 +16,7 @@ COVERAGE_DIR ?= cover
1616
# Whether to perform targets inside a docker container, or natively on the host
1717
USE_CONTAINER ?=
1818

19-
# List of cross compilation targets
19+
# List of cross compilation targets
2020
ifeq ($(TARGET_OS),)
2121
TARGET_OS := darwin linux windows
2222
endif

mk/coverage.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# COVERAGE_OUTPUT dir is a temp dir (OSX/Linux compatible), unless explicitly specified through env COVERAGE_DIR
1+
# COVERAGE_OUTPUT dir is a temp dir (OSX/Linux compatible), unless explicitly specified through env COVERAGE_DIR
22
COVERAGE_OUTPUT := $(COVERAGE_DIR)
33
ifeq ($(COVERAGE_OUTPUT),)
44
COVERAGE_OUTPUT := $(shell mktemp -d 2>/dev/null || mktemp -d -t machine-coverage)
@@ -9,7 +9,7 @@ COVERAGE_PROFILE := $(COVERAGE_OUTPUT)/profile.out
99
COVERAGE_HTML := $(COVERAGE_OUTPUT)/index.html
1010
COVERAGE_MODE := set
1111

12-
# Goveralls dependency
12+
# Goveralls dependency
1313
GOVERALLS_BIN := $(GOPATH)/bin/goveralls
1414
GOVERALLS := $(shell [ -x $(GOVERALLS_BIN) ] && echo $(GOVERALLS_BIN) || echo '')
1515

mk/main.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ GOLINT := $(shell [ -x $(GOLINT_BIN) ] && echo $(GOLINT_BIN) || echo '')
1212
GODEP_BIN := $(GOPATH)/bin/godep
1313
GODEP := $(shell [ -x $(GODEP_BIN) ] && echo $(GODEP_BIN) || echo '')
1414

15-
# Honor debug
15+
# Honor debug
1616
ifeq ($(DEBUG),true)
1717
# Disable function inlining and variable registerization
1818
GO_GCFLAGS := -gcflags "-N -l"
1919
else
20-
# Turn of DWARF debugging information and strip the binary otherwise
20+
# Turn of DWARF debugging information and strip the binary otherwise
2121
GO_LDFLAGS := $(GO_LDFLAGS) -w -s
2222
endif
2323

24-
# Honor static
24+
# Honor static
2525
ifeq ($(STATIC),true)
26-
# Append to the version
26+
# Append to the version
2727
GO_LDFLAGS := $(GO_LDFLAGS) -extldflags -static
2828
endif
2929

0 commit comments

Comments
 (0)