From: Matthias Clasen Date: Fri, 26 Sep 2008 14:28:25 +0000 (+0000) Subject: Bug 553724 – python interpretter path not patched in correctly X-Git-Tag: GLIB_2_19_0~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93d9e7abf4b31b529d1aab1c3115f5230c78a0ff;p=platform%2Fupstream%2Fglib.git Bug 553724 – python interpretter path not patched in correctly 2008-09-26 Matthias Clasen Bug 553724 – python interpretter path not patched in correctly * glib/Makefile.am: Fix the sed magic to replace python. svn path=/trunk/; revision=7546 --- diff --git a/ChangeLog b/ChangeLog index 2b6c0ab..7069c18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,10 @@ -@008-09-26 Matthias Clasen +2008-09-26 Matthias Clasen + + Bug 553724 – python interpretter path not patched in correctly + + * glib/Makefile.am: Fix the sed magic to replace python. + +2008-09-26 Matthias Clasen * glib/gmain.c: Add some more docs. diff --git a/glib/Makefile.am b/glib/Makefile.am index 94556b6..c6f20bb 100644 --- a/glib/Makefile.am +++ b/glib/Makefile.am @@ -347,7 +347,7 @@ install-exec-hook: mv -f "$(DESTDIR)$(bindir)/$$sf" "$(DESTDIR)$(bindir)/$$sf".tmp \ && sed < "$(DESTDIR)$(bindir)/$$sf".tmp > "$(DESTDIR)$(bindir)/$$sf" \ -e '1,24s|^ *#@PKGINSTALL_CONFIGVARS_IN24LINES@| ${CONFIGVARS}|' \ - -e '1,1s|#!/usr/bin/env python\([0-9]\+\(\.[0-9]\+\)\?\)\?|#!${PYTHON}|' \ + -e '1,1s|#! /usr/bin/env python\([0-9]\+\(\.[0-9]\+\)\?\)\?|#!${PYTHON}|' \ || exit $$? ; \ rm -f "$(DESTDIR)$(bindir)/$$sf".tmp ; \ done