Makefile: handle also stable wayland-protocols
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>
Thu, 18 Feb 2016 14:56:13 +0000 (16:56 +0200)
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>
Tue, 23 Feb 2016 12:21:00 +0000 (14:21 +0200)
Fix the protostability function to handle stable protocol files
correctly. Stable protocol XML file names do not have 'stable' in their
name, nor do we want to write that in the prerequisite lists in the
Makefile.

Function 'protoname' does not need fixing, because for stable protocol
prerequisites, the sed pattern will not match, and it passes stem
through as is, which is correct.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
Makefile.am

index e365396..505d40a 100644 (file)
@@ -1423,7 +1423,7 @@ doc: $(DOXYGEN_INDICES)
 .SECONDEXPANSION:
 
 define protostability
-$(shell echo $1 | sed 's/.*\(\<unstable\>\|\<stable\>\).*/\1/')
+$(if $(findstring unstable,$1),unstable,stable)
 endef
 
 define protoname