[Bug 240312] x11-wm/ede: Add sed=gsed
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Tue Sep 3 17:38:49 UTC 2019
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240312
Bug ID: 240312
Summary: x11-wm/ede: Add sed=gsed
Product: Ports & Packages
Version: Latest
Hardware: Any
OS: Any
Status: New
Severity: Affects Only Me
Priority: ---
Component: Individual Port(s)
Assignee: ports-bugs at FreeBSD.org
Reporter: kevans at freebsd.org
Created attachment 207155
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=207155&action=edit
svn(1) diff against the ports tree
Two problems lie in ${EDELIB_WRKSRC}/sslib/gen-c-string.sh sed usage:
- \s is a GNU extension, this is trivially replaced with [[:space:]], HOWEVER:
- The next expression uses \t and expects a tab, but this will not happen with
our sed.
\s is caught by bug #229925 that forbids escaping ordinary characters that have
no extra meaning to lessen the stress of later adding special behavior to some
of these escape sequences. \t, however, will just silently do the wrong thing.
Switch this over to gsed for now; a pass will be done later to check out every
port with BUILD_DEPENDS containing gsed to evaluate whether we're ready for
them to use base sed or not.
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list