From 67adfa6f54ee86d73b5e6cbb235f68ff43fd9179 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Wed, 14 Jun 2017 23:29:50 -0400 Subject: build: Fix rpath not getting set for perl plugin Some distros of perl pass an rpath so we shouldn't ignore it. Other junk comes with it but oh well. --- plugins/perl/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/perl/meson.build') diff --git a/plugins/perl/meson.build b/plugins/perl/meson.build index 49011884..08764a16 100644 --- a/plugins/perl/meson.build +++ b/plugins/perl/meson.build @@ -38,7 +38,7 @@ if ret.returncode() != 0 endif perl_ldflags = [] foreach flag : ret.stdout().strip().split(' ') - if flag.startswith('-L') or flag.startswith('-l') + if flag.startswith('-L') or flag.startswith('-l') or flag.startswith('-Wl') perl_ldflags += flag endif endforeach -- cgit 1.4.1