Use the same Python as we found in configure
authorJohan Dahlin <johan@gnome.org>
Fri, 29 Jun 2012 14:59:23 +0000 (11:59 -0300)
committerJohan Dahlin <johan@gnome.org>
Fri, 29 Jun 2012 14:59:33 +0000 (11:59 -0300)
Don't assume /usr/bin/python is python 2.x, on newer Ubuntu versions
it's actually python 3.x.

gio/gdbus-2.0/codegen/Makefile.am
gio/gdbus-2.0/codegen/gdbus-codegen.in

index cd9983e..9974005 100644 (file)
@@ -23,7 +23,7 @@ CLEANFILES += gdbus-codegen
 EXTRA_DIST += gdbus-codegen.in
 
 gdbus-codegen: gdbus-codegen.in Makefile $(codegen_PYTHON)
-       $(AM_V_GEN) sed -e 's,@libdir\@,$(libdir),' $< > $@.tmp && mv $@.tmp $@
+       $(AM_V_GEN) sed -e 's,@libdir\@,$(libdir),' -e 's,@PYTHON\@,$(PYTHON),' $< > $@.tmp && mv $@.tmp $@
        @chmod a+x $@
 
 clean-local:
index ae900bb..217c755 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!@PYTHON@
 
 # GDBus - GLib D-Bus Library
 #