diff options
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 95113a0..b7e5a8c 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -260,9 +260,9 @@ can not be used with the current version of glib-compiled-resources, due to link_command = ['-l%s' % lib.name] if isinstance(lib, build.SharedLibrary): libdir = os.path.join(state.environment.get_build_dir(), lib.subdir) - link_command += ['-L%s' %libdir] + link_command += ['-L%s' % libdir] if include_rpath: - link_command += ['-Wl,-rpath %s' %libdir] + link_command += ['-Wl,-rpath %s' % libdir] if depends: depends.append(lib) return link_command |