aboutsummaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorGuillaume Maudoux <layus.on@gmail.com>2016-11-25 15:48:27 +0100
committerDomen Kožar <domen@dev.si>2016-11-25 15:48:27 +0100
commitf78126bfd6b6c8477fcdbc09b2f98772dbe9a1e7 (patch)
tree23a76a33f21ce39184bcbdcd28cb937d15968ce7 /mk
parent7ee43df8622cc0589d54248fb44cebe1c1d991d2 (diff)
Get rid of unicode quotes (#1140)
Diffstat (limited to 'mk')
-rw-r--r--mk/functions.mk4
-rw-r--r--mk/libraries.mk6
-rw-r--r--mk/programs.mk2
-rw-r--r--mk/templates.mk2
-rw-r--r--mk/tests.mk2
5 files changed, 8 insertions, 8 deletions
diff --git a/mk/functions.mk b/mk/functions.mk
index c48775db8..fdeb92a8a 100644
--- a/mk/functions.mk
+++ b/mk/functions.mk
@@ -1,9 +1,9 @@
# Utility function for recursively finding files, e.g.
-# ‘$(call rwildcard, path/to/dir, *.c *.h)’.
+# '$(call rwildcard, path/to/dir, *.c *.h)'.
rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
# Given a file name, produce the corresponding dependency file
-# (e.g. ‘foo/bar.o’ becomes ‘foo/.bar.o.dep’).
+# (e.g. 'foo/bar.o' becomes 'foo/.bar.o.dep').
filename-to-dep = $(dir $1).$(notdir $1).dep
# Return the full path to a program by looking it up in $PATH, or the
diff --git a/mk/libraries.mk b/mk/libraries.mk
index 3cd7a5310..8f60b0e00 100644
--- a/mk/libraries.mk
+++ b/mk/libraries.mk
@@ -11,9 +11,9 @@ else
endif
# Build a library with symbolic name $(1). The library is defined by
-# various variables prefixed by ‘$(1)_’:
+# various variables prefixed by '$(1)_':
#
-# - $(1)_NAME: the name of the library (e.g. ‘libfoo’); defaults to
+# - $(1)_NAME: the name of the library (e.g. 'libfoo'); defaults to
# $(1).
#
# - $(1)_DIR: the directory where the (non-installed) library will be
@@ -45,7 +45,7 @@ endif
# - $(1)_INSTALL_DIR: the directory where the library will be
# installed. Defaults to $(libdir).
#
-# - BUILD_SHARED_LIBS: if equal to ‘1’, a dynamic library will be
+# - BUILD_SHARED_LIBS: if equal to '1', a dynamic library will be
# built, otherwise a static library.
define build-library
$(1)_NAME ?= $(1)
diff --git a/mk/programs.mk b/mk/programs.mk
index 3ac64494e..e77cda1e0 100644
--- a/mk/programs.mk
+++ b/mk/programs.mk
@@ -1,7 +1,7 @@
programs-list :=
# Build a program with symbolic name $(1). The program is defined by
-# various variables prefixed by ‘$(1)_’:
+# various variables prefixed by '$(1)_':
#
# - $(1)_DIR: the directory where the (non-installed) program will be
# placed.
diff --git a/mk/templates.mk b/mk/templates.mk
index c7ac7afbf..850fc8f17 100644
--- a/mk/templates.mk
+++ b/mk/templates.mk
@@ -1,7 +1,7 @@
template-files :=
# Create the file $(1) from $(1).in by running config.status (which
-# substitutes all ‘@var@’ variables set by the configure script).
+# substitutes all '@var@' variables set by the configure script).
define instantiate-template
clean-files += $(1)
diff --git a/mk/tests.mk b/mk/tests.mk
index 004a48028..e0d9ff146 100644
--- a/mk/tests.mk
+++ b/mk/tests.mk
@@ -1,4 +1,4 @@
-# Run program $1 as part of ‘make installcheck’.
+# Run program $1 as part of 'make installcheck'.
define run-install-test
installcheck: $1