summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzesimir Nowak <qdlacz@gmail.com>2023-04-13 08:10:01 +0000
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-04-14 15:51:11 -0700
commitc87ed382e783ddd2f73feef0dce71ae3278cdf00 (patch)
treede0429e9caaa2bc6bb231b012108feb9fb45409a
parentf83c3406389d0487e7b2cbdc2cfbd32fd1aa2fed (diff)
meson: Use proper option for encodingsHEADmaster
The with-encodingsdir option is listed in meson options but otherwise unused. Looks like a copy-pasta mistake.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index d03a4dc..f13f4c8 100644
--- a/meson.build
+++ b/meson.build
@@ -40,7 +40,7 @@ conf.set('FONTROOTDIR', fontrootdir)
# Replaces XORG_FONTSUBDIR([ENCODINGSDIR],[encodingsdir],[encodings])
# with the substitution to use the FontDir defined in the Imake configs
-encodingsdir = get_option('with-fontrootdir')
+encodingsdir = get_option('with-encodingsdir')
if encodingsdir == ''
encodingsdir = 'FontDir' / 'encodings'
endif