summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorBenjamin Berg <bberg@redhat.com>2020-10-23 13:51:04 +0200
committerBenjamin Berg <benjamin@sipsolutions.net>2020-10-23 11:53:35 +0000
commit5d5bc0f4e46a6e926fd779401374b121a992d3de (patch)
tree236fa83aab42e36bb8f7c4c319fc5d15df23eb45 /meson.build
parent688309c5214a79db53c53ac279379e3761723864 (diff)
downloadgdm-5d5bc0f4e46a6e926fd779401374b121a992d3de.tar.gz
meson: Fix location of locale directorybenzea/fix-locale-dir
The localedir is relative to the prefix and not the data directory. This regressed during the meson port where the get_option('datadir') was accidentally inserted into the GNOMELOCALEDIR definition. Closes #635
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 1979cfe5..a729792c 100644
--- a/meson.build
+++ b/meson.build
@@ -205,7 +205,7 @@ conf.set_quoted('GDM_SCREENSHOT_DIR', gdm_screenshot_dir)
conf.set_quoted('GDM_XAUTH_DIR', gdm_xauth_dir)
conf.set_quoted('GDM_RAN_ONCE_MARKER_DIR', ran_once_marker_dir)
conf.set_quoted('GDM_RUN_DIR', gdm_run_dir)
-conf.set_quoted('GNOMELOCALEDIR', gdm_prefix / get_option('datadir') / get_option('localedir'))
+conf.set_quoted('GNOMELOCALEDIR', gdm_prefix / get_option('localedir'))
conf.set_quoted('AT_SPI_REGISTRYD_DIR', at_spi_registryd_dir)
conf.set_quoted('GDM_PID_FILE', gdm_pid_file)
conf.set_quoted('GNOME_SETTINGS_DAEMON_DIR', gnome_settings_daemon_dir)