From b6083b3b729a2cac5b5fb6bf6d10bb92d6e9a066 Mon Sep 17 00:00:00 2001 From: Guillaume Poirier-Morency Date: Wed, 24 Jan 2024 15:38:20 -0800 Subject: [PATCH] Fix variable names for dependencies in installation example (fix #242) --- docs/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 47b82cda..65ff5123 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -77,8 +77,8 @@ Note that due to Meson design, dependencies must be explicitly provided. gobject = dependency('gobject-2.0') gio = dependency('gio-2.0') soup = dependency('libsoup-2.4') - vsgi = subproject('valum').get_variable('vsgi') - valum = subproject('valum').get_variable('valum') + vsgi = subproject('valum').get_variable('vsgi_dep') + valum = subproject('valum').get_variable('valum_dep') executable('app', 'app.vala', dependencies: [glib, gobject, gio, soup, vsgi, valum])