# HG changeset patch # User Paul Issott # Date 1494170912 -3600 # Node ID 1c1ff70768b70c8b219b10389608d1ff8f7f95e4 # Parent 61a8957ac604c97ef4879a43a2f945b183df4870 vmtouch: fix build diff -r 61a8957ac604 -r 1c1ff70768b7 vmtouch/receipt --- a/vmtouch/receipt Sun May 07 15:59:20 2017 +0100 +++ b/vmtouch/receipt Sun May 07 16:28:32 2017 +0100 @@ -16,14 +16,13 @@ # Rules to configure and make the package. compile_rules() { - make - make DESTDIR=$DESTDIR install + make } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + mkdir -p $fs/usr/bin + cp -a $src/$PACKAGE $fs/usr/bin }