diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-17 09:42:26 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-06-17 11:14:20 +0300 |
commit | bc86ec86ea005a2072d65b209b20cef788cadbbc (patch) | |
tree | 4244b23a0e18319394e2d0407cd33ebe4a1f22c2 /dev-ruby/sassc | |
parent | dev-python/flask-sphinx-themes: enable py3.11 (diff) | |
download | gentoo-bc86ec86ea005a2072d65b209b20cef788cadbbc.tar.gz gentoo-bc86ec86ea005a2072d65b209b20cef788cadbbc.tar.bz2 gentoo-bc86ec86ea005a2072d65b209b20cef788cadbbc.zip |
dev-ruby/sassc: Fix quoting of ESYSROOT in sed expression
In a fix for an unquoted ESYSROOT variable, I inadvertently removed the
quotes that were intended to be inserted by the sed expression.
Closes: https://bugs.gentoo.org/852674
Fixes: 0b69db1f3e1 ("dev-ruby/sassc: fix unquoted variable ESYSROOT")
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Closes: https://github.com/gentoo/gentoo/pull/25935
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-ruby/sassc')
-rw-r--r-- | dev-ruby/sassc/sassc-2.4.0-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-ruby/sassc/sassc-2.4.0-r1.ebuild b/dev-ruby/sassc/sassc-2.4.0-r1.ebuild index 2fd15deecd5c..c444d44b7c5a 100644 --- a/dev-ruby/sassc/sassc-2.4.0-r1.ebuild +++ b/dev-ruby/sassc/sassc-2.4.0-r1.ebuild @@ -34,7 +34,7 @@ all_ruby_prepare() { # Use unbundled libsass rm -rf ext || die - sed -i -e "/ffi_lib/ s:__dir__:${ESYSROOT}/usr/$(get_libdir):" \ + sed -i -e "/ffi_lib/ s:__dir__:\"${ESYSROOT}/usr/$(get_libdir)\":" \ lib/sassc/native.rb || die # Avoid version-specific test so newer libsass versions can be used. |