Skip to content

Commit

Permalink
dev-tcltk/iwidgets: fix unterminated quoted string
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/885809
Signed-off-by: Alfredo Tupone <[email protected]>
  • Loading branch information
atupone committed Mar 16, 2023
1 parent 919da32 commit 974d0c8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
11 changes: 11 additions & 0 deletions dev-tcltk/iwidgets/files/iwidgets-4.1.1-dash.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- a/tclconfig/tcl.m4 2023-03-16 08:23:24.920934671 +0100
+++ b/tclconfig/tcl.m4 2023-03-16 08:24:06.288775313 +0100
@@ -794,7 +794,7 @@
# results, and the version is kept in special file).

if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
- system=MP-RAS-`awk '{print $3}' /etc/.relid'`
+ system=MP-RAS-`awk '{print $3}' /etc/.relid`
fi
if test "`uname -s`" = "AIX" ; then
system=AIX-`uname -v`.`uname -r`
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6
EAPI=8

inherit virtualx autotools

Expand Down Expand Up @@ -31,6 +31,8 @@ QA_CONFIG_IMPL_DECL_SKIP=(
stat64 # used to test for Large File Support
)

PATCHES=( "${FILESDIR}"/${P}-dash.patch )

src_prepare() {
default
sed \
Expand Down

0 comments on commit 974d0c8

Please sign in to comment.