1diff --git a/data/org.gnome.Shell-disable-extensions.service b/data/org.gnome.Shell-disable-extensions.service
2index de91167c5..1c9965678 100644
3--- a/data/org.gnome.Shell-disable-extensions.service
4+++ b/data/org.gnome.Shell-disable-extensions.service
5@@ -11,5 +11,5 @@ ConditionPathExists=%t/gnome-shell-disable-extensions
6 [Service]
7 Type=simple
8 # Disable extensions
9-ExecStart=gsettings set org.gnome.shell disable-user-extensions true
10+ExecStart=@gsettings@ set org.gnome.shell disable-user-extensions true
11 Restart=no
12diff --git a/js/ui/extensionDownloader.js b/js/ui/extensionDownloader.js
13index 53fd92846..89533cedc 100644
14--- a/js/ui/extensionDownloader.js
15+++ b/js/ui/extensionDownloader.js
16@@ -124,7 +124,7 @@ async function extractExtensionArchive(bytes, dir) {
17 stream.close_async(GLib.PRIORITY_DEFAULT, null);
18
19 const unzip = Gio.Subprocess.new(
20- ['unzip', '-uod', dir.get_path(), '--', file.get_path()],
21+ ['@unzip@', '-uod', dir.get_path(), '--', file.get_path()],
22 Gio.SubprocessFlags.NONE);
23 await unzip.wait_check_async(null);
24
25@@ -146,7 +146,7 @@ async function extractExtensionArchive(bytes, dir) {
26 }
27
28 const compileSchema = Gio.Subprocess.new(
29- ['glib-compile-schemas', '--strict', schemasPath.get_path()],
30+ ['@glib_compile_schemas@', '--strict', schemasPath.get_path()],
31 Gio.SubprocessFlags.NONE);
32
33 try {
34diff --git a/js/ui/status/keyboard.js b/js/ui/status/keyboard.js
35index 1b43e1051..a31b0a304 100644
36--- a/js/ui/status/keyboard.js
37+++ b/js/ui/status/keyboard.js
38@@ -1104,6 +1104,6 @@ class InputSourceIndicator extends PanelMenu.Button {
39 _showLayout() {
40 Main.overview.hide();
41
42- Util.spawn(['tecla']);
43+ Util.spawn(['@tecla@']);
44 }
45 });
46diff --git a/subprojects/extensions-tool/src/command-install.c b/subprojects/extensions-tool/src/command-install.c
47index 11fb4b6b7..e00e4807b 100644
48--- a/subprojects/extensions-tool/src/command-install.c
49+++ b/subprojects/extensions-tool/src/command-install.c
50@@ -158,7 +158,7 @@ install_extension (const char *bundle,
51
52 schemapath = g_file_get_path (schemadir);
53 proc = g_subprocess_new (G_SUBPROCESS_FLAGS_STDERR_SILENCE, &error,
54- "glib-compile-schemas", "--strict", schemapath,
55+ "@glib_compile_schemas@", "--strict", schemapath,
56 NULL);
57
58 if (!g_subprocess_wait_check (proc, NULL, &error))