wok diff libjson/receipt @ rev 20095
slitaz-base-files: don't backup-restore the whole /etc ($CONFIG_FILES variable exist), allow to update /etc/init.d/rc.functions
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Oct 05 23:51:00 2017 +0300 (2017-10-05) |
parents | 3ed228da4bd2 |
children | 86790a278e70 |
line diff
1.1 --- a/libjson/receipt Wed Jul 02 20:52:57 2014 +0200 1.2 +++ b/libjson/receipt Thu Oct 05 23:51:00 2017 +0300 1.3 @@ -20,12 +20,14 @@ 1.4 mkdir Objects_static Objects_shared _internal/Source/Dependencies 1.5 mkdir -p $DESTDIR/usr/lib 1.6 sed -i 's|^in[a-z]*_path *= |&$(DESTDIR)|' makefile 1.7 - make -j 1 SHARED=1 all && 1.8 + make SHARED=1 all && 1.9 make DESTDIR=$DESTDIR install 1.10 + make DESTDIR=$DESTDIR SHARED=1 install 1.11 } 1.12 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - cp -a $install/* $fs/ 1.17 + mkdir -p $fs/usr/lib 1.18 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.19 }