]> git.ipfire.org Git - thirdparty/git.git/commit
meson.build: quote the GITWEBDIR build configuration
authorRamsay Jones <ramsay@ramsayjones.plus.com>
Mon, 19 May 2025 16:25:19 +0000 (17:25 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 19 May 2025 18:33:59 +0000 (11:33 -0700)
commitf783b3fe740eeb021f8386df2de2ab9fa32eed1b
treeed0d5e4a7f5aa8c4963160f032d071b92b7fa4d0
parent6f84262c44a89851c3ae5a6e4c1a9d06b2068d75
meson.build: quote the GITWEBDIR build configuration

The build configuration options with (non-empty) values, for example
filesystem paths potentially containing spaces, have been set using
the '.set_quoted()' method. However, the GITWEBDIR value has been
set using the '.set()' method instead. In order to correctly quote
the GITWEBDIR value, replace the '.set()' method with '.set_quoted()'.

Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
meson.build