diff options
author | 2018-08-04 23:29:19 +0200 | |
---|---|---|
committer | 2018-08-04 23:30:23 +0200 | |
commit | bbab16dd0764dbb221768f939006975cd802e05d (patch) | |
tree | 5e8c5997f63ea189e4c6617884dba7f51280fba8 /dev-libs | |
parent | net-analyzer/icinga2: fix postinst link (diff) | |
download | gentoo-bbab16dd0764dbb221768f939006975cd802e05d.tar.gz gentoo-bbab16dd0764dbb221768f939006975cd802e05d.tar.bz2 gentoo-bbab16dd0764dbb221768f939006975cd802e05d.zip |
dev-libs/librelp: fix USE=-static-libs
Closes: https://bugs.gentoo.org/662806
Package-Manager: Portage-2.3.44, Repoman-2.3.10
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/librelp/librelp-1.2.17.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-libs/librelp/librelp-1.2.17.ebuild b/dev-libs/librelp/librelp-1.2.17.ebuild index ffce4fe9ec95..ccdcf011fa23 100644 --- a/dev-libs/librelp/librelp-1.2.17.ebuild +++ b/dev-libs/librelp/librelp-1.2.17.ebuild @@ -70,6 +70,6 @@ src_install() { default if ! use static-libs; then - find "${ED}"usr/lib* -name '*.la' -delete || die + find "${ED%/}"/usr/lib* -name '*.la' -delete || die fi } |