[glib] gdbus-codegen: Quote substitution variables



commit 97cd6fa2e3ea9318b8af65b4623057c4f5600fc2
Author: Maarten Bosmans <mkbosmans gmail com>
Date:   Wed May 11 15:47:00 2011 -0400

    gdbus-codegen: Quote substitution variables
    
    Avoids failure if they contain spaces.
    
    Commit message written by Colin Walters <walters verbum org>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=649775

 gio/gdbus-codegen/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gio/gdbus-codegen/Makefile.am b/gio/gdbus-codegen/Makefile.am
index 8e306bd..14ac009 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:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]