Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
meson: Always wrap "prefix" option with join_paths() to make Windows …
…happy

Both "\" and "/" separators are allowed on Windows but the problem
is that "\" is not converted to "\\" in this case.
It will result to unknown/unrecognized character escape sequence.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/851>
  • Loading branch information
seungha-yang authored and tp-m committed Oct 4, 2020
1 parent 6c7cd66 commit 43fed13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -301,7 +301,7 @@ else
get_option('libdir'), 'gio/modules'))
core_conf.set_quoted('GIO_LIBDIR', join_paths(get_option('prefix'),
get_option('libdir')))
core_conf.set_quoted('GIO_PREFIX', get_option('prefix'))
core_conf.set_quoted('GIO_PREFIX', join_paths(get_option('prefix')))
endif

configinc = include_directories('.')
Expand Down

0 comments on commit 43fed13

Please sign in to comment.