GNOME Bugzilla – Bug 792279
Use portable sed syntax in gdk/wayland/Makefile.am
Last modified: 2018-01-09 18:48:31 UTC
Wayland has been committed to FreeBSD ports for almost one year. Although there are still many downstream patches, I think we can start testing Wayland build on FreeBSD. It is still not enabled by default, so users who want to test it have to build Mesa and possibly other packages from sources themselves. POSIX only supports basic regular expressions (BRE) in sed command. \<, \>, \+, \? are not available, which can cause build failure when Wayland backend is enabled because GNU make cannot find rules to build required *-protocol.c and *-protocol.h files.
Created attachment 366428 [details] [review] wayland: Use portable sed syntax in gdk/wayland/Makefile.am Replace non-portable \<, \>, \+ with \(, \), \{, \} to avoid build failure on systems not using GNU sed.
Assuming you've tested it, sure!
Attachment 366428 [details] pushed as b68e55e - wayland: Use portable sed syntax in gdk/wayland/Makefile.am