about summary refs log tree commit diff
path: root/mk
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2016-11-25T23·37+0100
committerEelco Dolstra <edolstra@gmail.com>2016-11-25T23·38+0100
commit215b70f51e5abd350c9b7db656aedac9d96d0046 (patch)
tree95778448ecdfbc1d8f4c254813cc5d91ed62a832 /mk
parentf78126bfd6b6c8477fcdbc09b2f98772dbe9a1e7 (diff)
Revert "Get rid of unicode quotes (#1140)"
This reverts commit f78126bfd6b6c8477fcdbc09b2f98772dbe9a1e7. There
really is no need for such a massive change...
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 fdeb92a8ad..c48775db8c 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 8f60b0e001..3cd7a53107 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 e77cda1e08..3ac64494e3 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 850fc8f17c..c7ac7afbff 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 e0d9ff146a..004a480286 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