All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] allow to build with older sed
@ 2018-01-19  7:52 Jan Beulich
  2018-01-19  9:28 ` Daniel P. Berrange
  2018-01-19 14:37 ` Eric Blake
  0 siblings, 2 replies; 4+ messages in thread
From: Jan Beulich @ 2018-01-19  7:52 UTC (permalink / raw)
  To: qemu-devel

sed's -E option may not be supported by older distros. As there's no
point using sed here at all, use just shell mechanisms to establish the
variable values, starting from the stem instead of the full target.

Signed-off-by: Jan Beulich <jbeulich@suse.com>

--- a/Makefile
+++ b/Makefile
@@ -242,8 +242,7 @@ GENERATED_FILES += $(KEYCODEMAP_FILES)
 
 ui/input-keymap-%.c: $(KEYCODEMAP_GEN) $(KEYCODEMAP_CSV) $(SRC_PATH)/ui/Makefile.objs
 	$(call quiet-command,\
-	    src=$$(echo $@ | sed -E -e "s,^ui/input-keymap-(.+)-to-(.+)\.c$$,\1,") && \
-	    dst=$$(echo $@ | sed -E -e "s,^ui/input-keymap-(.+)-to-(.+)\.c$$,\2,") && \
+	    stem=$* && src=$${stem%-to-*} dst=$${stem#*-to-} && \
 	    test -e $(KEYCODEMAP_GEN) && \
 	    $(PYTHON) $(KEYCODEMAP_GEN) \
 	          --lang glib2 \

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-01-19 14:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-19  7:52 [Qemu-devel] [PATCH] allow to build with older sed Jan Beulich
2018-01-19  9:28 ` Daniel P. Berrange
2018-01-19 12:13   ` Philippe Mathieu-Daudé
2018-01-19 14:37 ` Eric Blake

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.