wok diff coreutils/receipt @ rev 18837
Up slitaz-base-files + typo in autoblog
author | Lucas Levrel <llevrel@yahoo.fr> |
---|---|
date | Wed Jan 20 21:39:21 2016 +0100 (2016-01-20) |
parents | 9e01bc6321ea |
children | 1d0123efe74c |
line diff
1.1 --- a/coreutils/receipt Sun Dec 20 15:13:45 2015 +0100 1.2 +++ b/coreutils/receipt Wed Jan 20 21:39:21 2016 +0100 1.3 @@ -16,8 +16,6 @@ 1.4 # Rules to configure and make the package. 1.5 compile_rules() 1.6 { 1.7 - cd $src 1.8 - 1.9 # NOTE: There does not seem to be a problem with sigcontext.h in Linux 2.6.29.3 1.10 1.11 # Hack to fix ls: expected specifier-qualifier-list before '__u64' 1.12 @@ -38,7 +36,7 @@ 1.13 sed -i 's/1.10a/1.10.2/' configure.ac || return 1 1.14 sed -i 's/dist-xz/dist-lzma/' configure.ac || return 1 1.15 1.16 - ./configure $CONFIGURE_ARGS && 1.17 + ./configure $CONFIGURE_ARGS && 1.18 make && make install 1.19 1.20 # Restore original sigcontext.h 1.21 @@ -71,24 +69,10 @@ 1.22 cp -a $install/usr/bin/cp $fs/usr/bin 1.23 } 1.24 1.25 -# Pre and post install commands for Tazpkg. 1.26 -# We must remove all Busybox symlink but cp before installing. 1.27 -# 1.28 -pre_install() 1.29 -{ 1.30 - echo "Processing pre-install commands..." 1.31 - # we keed busybox cp for installing the pkg 1.32 - echo -n "Removing Busybox replaced utils... " 1.33 - rm -f "$1/usr/bin/od" "$1/usr/bin/split" 1.34 - status 1.35 -} 1.36 - 1.37 post_install() 1.38 { 1.39 - echo -n "Installing cp..." 1.40 rm "$1/bin/cp" && 1.41 mv "$1/usr/bin/cp" "$1/bin" 1.42 - status 1.43 } 1.44 1.45 post_remove()