GNOME Bugzilla – Bug 792280
Use portable sed syntax in src/Makefile.am
Last modified: 2018-03-21 13:28:04 UTC
This is the same issue as bug 792279, but for mutter. POSIX only supports basic regular expressions (BRE) in sed command, so using \<, \>, \+ can cause build problems on systems not using GNU sed.
Created attachment 366429 [details] [review] build: Use portable sed syntax in src/Makefile.am Replace non-portable \<, \>, \+ with \(, \), \{, \} to avoid build failure on systems not using GNU sed.
Moved to and resolved in https://gitlab.gnome.org/GNOME/mutter/merge_requests/27.