* builds/windows/detect.mk (COPY): Make it work with `shell`.

Without this patch, we get the error

  builds/toplevel.mk:127: *** missing separator.  Stop.

Reported by Anuj, with a solution from Alexei.
This commit is contained in:
Werner Lemberg 2020-12-23 22:02:48 +01:00
parent 768022b98e
commit 2373074a2c
2 changed files with 13 additions and 3 deletions

View File

@ -1,6 +1,16 @@
2020-12-23 Werner Lemberg <wl@gnu.org>
* builds/windows/detect.mk (COPY): Make it work with `shell`.
Without this patch, we get the error
builds/toplevel.mk:127: *** missing separator. Stop.
Reported by Anuj, with a solution from Alexei.
2020-12-23 Ignacio Casal Quinteiro <qignacio@amazon.com>
meson.build (ft2_defines): Fix builds on Windows.
* meson.build (ft2_defines): Fix builds on Windows.
2020-12-18 Tatsuyuki Ishi <ishitatsuyuki@gmail.com>

View File

@ -81,9 +81,9 @@ ifeq ($(PLATFORM),windows)
# (2004-11-11), and then in the devel mailing list (2004-11-20 to -23).
#
ifeq ($(OS),Windows_NT)
COPY := cmd.exe /c copy
COPY := >nul cmd.exe /c copy
else
COPY := copy
COPY := >nul copy
endif # test NT