Summary: | multimedia/libkate: remove redundant regex escapes | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Kyle Evans <kevans> | ||||
Component: | Individual Port(s) | Assignee: | Barbara Guida <bar> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | kevans, swills | ||||
Priority: | --- | Flags: | bugzilla:
maintainer-feedback?
(bar) |
||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Bug Depends on: | |||||||
Bug Blocks: | 229925 | ||||||
Attachments: |
|
This will need a PORTREVISION bump. A commit references this bug: Author: bar Date: Wed Dec 26 19:54:04 UTC 2018 New revision: 488422 URL: https://svnweb.freebsd.org/changeset/ports/488422 Log: Remove redundant regex escapes. PR: 233457 Submitted by: kevans Changes: head/multimedia/libkate/Makefile |
Created attachment 199502 [details] svn(1) diff against multimedia/libkate Hi, libkate's Makefile escapes single quotes in some of the sed expressions. This gets passed through to regex(3) as an escaped-single-quote, which is an escape of an ordinary character. Such escapes will be forbidden in a future version of regex(3), so catch up early and remove the redundant escapes. Thanks, Kyle Evans