1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-08 02:43:54 +02:00

Get rid of unicode quotes (#1140)

This commit is contained in:
Guillaume Maudoux 2016-11-25 15:48:27 +01:00 committed by Domen Kožar
parent 7ee43df862
commit f78126bfd6
96 changed files with 670 additions and 670 deletions

View file

@ -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

View file

@ -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)

View file

@ -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.

View file

@ -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)

View file

@ -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