From: Koen Kooi Date: Wed, 27 Aug 2008 17:28:28 +0000 (+0000) Subject: intltool-native 0.40.3: replace patch with sed X-Git-Tag: Release-2010-05/1~6221^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5844a97e7aa698b622b1650f62a59bd1a2155053;p=openembedded.git intltool-native 0.40.3: replace patch with sed --- diff --git a/packages/intltool/intltool-native_0.40.3.bb b/packages/intltool/intltool-native_0.40.3.bb index bf2e0f3af2..ca1c5ef5c9 100644 --- a/packages/intltool/intltool-native_0.40.3.bb +++ b/packages/intltool/intltool-native_0.40.3.bb @@ -1,6 +1,15 @@ require intltool_${PV}.bb +PR = "r1" + inherit native DEPENDS = "libxml-parser-perl-native" export PERL = "/usr/bin/env perl" + +do_configure_prepend() { + cd ${S} + for i in intltool*.in ; do + sed -i -e s:-w::g $i + done +}