From 215b70f51e5abd350c9b7db656aedac9d96d0046 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 26 Nov 2016 00:37:43 +0100 Subject: Revert "Get rid of unicode quotes (#1140)" This reverts commit f78126bfd6b6c8477fcdbc09b2f98772dbe9a1e7. There really is no need for such a massive change... --- mk/functions.mk | 4 ++-- mk/libraries.mk | 6 +++--- mk/programs.mk | 2 +- mk/templates.mk | 2 +- mk/tests.mk | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) (limited to 'mk') diff --git a/mk/functions.mk b/mk/functions.mk index fdeb92a8ad11..c48775db8c3b 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 8f60b0e001e1..3cd7a53107bd 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 e77cda1e08f4..3ac64494e3a5 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 850fc8f17cff..c7ac7afbff27 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 e0d9ff146a68..004a48028616 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 -- cgit 1.4.1