# HG changeset patch # User Pascal Bellard # Date 1380646031 0 # Node ID d00dea30a0c916d18a0a8732e369a406183099fa # Parent 6c4006240de0b5178dd3a775005a26152c9931eb powertop: use MKDIR_P macro diff -r 6c4006240de0 -r d00dea30a0c9 powertop/receipt --- a/powertop/receipt Tue Oct 01 13:32:31 2013 +0000 +++ b/powertop/receipt Tue Oct 01 16:47:11 2013 +0000 @@ -13,12 +13,14 @@ DEPENDS="ncursesw pciutils libnl zlib gcc-lib-base" BUILD_DEPENDS="acl gettext ncursesw-dev wget autoconf automake libtool \ -pciutils-dev libnl-dev zlib-dev" +pciutils-dev libnl-dev zlib-dev gettext diffutils" # Rules to configure and make the package. compile_rules() { cd $src + sed -i 's/AC_PROG_LIBTOOL/AC_PROG_MKDIR_P\n&/' configure.ac + sed -i 's/(mkdir_p)/(MKDIR_P)/' po/Makefile.in.in ./autogen.sh ./configure && make && make install }