From 97cd6fa2e3ea9318b8af65b4623057c4f5600fc2 Mon Sep 17 00:00:00 2001 From: Maarten Bosmans Date: Wed, 11 May 2011 15:47:00 -0400 Subject: [PATCH] gdbus-codegen: Quote substitution variables Avoids failure if they contain spaces. Commit message written by Colin Walters https://bugzilla.gnome.org/show_bug.cgi?id=649775 --- gio/gdbus-codegen/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbus-codegen/Makefile.am b/gio/gdbus-codegen/Makefile.am index 8e306bd13..14ac00984 100644 --- a/gio/gdbus-codegen/Makefile.am +++ b/gio/gdbus-codegen/Makefile.am @@ -21,7 +21,7 @@ CLEANFILES += gdbus-codegen EXTRA_DIST += gdbus-codegen.in gdbus-codegen: gdbus-codegen.in Makefile - $(AM_V_GEN) sed -e s,@libdir\@,$(libdir), -e s,@PYTHON\@,$(PYTHON), $< > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN) sed -e 's,@libdir\@,$(libdir),' -e 's,@PYTHON\@,$(PYTHON),' $< > $@.tmp && mv $@.tmp $@ @chmod a+x $@ clean-local: