# HG changeset patch # User Christophe Lincoln # Date 1304230243 -7200 # Node ID 6460ccb2837af98f6f333c913bc374346a3d5c6e # Parent 5fbf13b1df6d1ecfa546c3e922d5ae45567677b1 make: fix receipt diff -r 5fbf13b1df6d -r 6460ccb2837a make/receipt --- a/make/receipt Sat Apr 30 22:04:35 2011 +0200 +++ b/make/receipt Sun May 01 08:10:43 2011 +0200 @@ -15,19 +15,16 @@ compile_rules() { cd $src - # http://savannah.gnu.org/bugs/?30612 - patch -Np1 -i ../stuff/bug30612.patch + patch -Np1 -i $stuff/bug30612.patch # http://savannah.gnu.org/bugs/?30723 - patch -Np1 -i ../stuff/bug30723.patch - - ./configure && make && make check && make install + patch -Np1 -i $stuff/bug30723.patch + ./configure $CONFIGURE_ARGS && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share/locale + mkdir -p $fs/usr cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale }