comparison core/findutils/findutils.sh @ 606:25cecc6dca48

vanilla: use POSIX shell and busybox tar
author David Demelier <markand@malikania.fr>
date Thu, 18 Jul 2019 07:26:43 +0200
parents bad483aace64
children ae55d9077f70
comparison
equal deleted inserted replaced
605:860ab66f5f71 606:25cecc6dca48
39 fi 39 fi
40 40
41 build() 41 build()
42 { 42 {
43 rm -rf $PKGNAME-$PKGVERSION 43 rm -rf $PKGNAME-$PKGVERSION
44 tar xvaf $PKGNAME-$PKGVERSION.tar.gz 44 tar xvf $PKGNAME-$PKGVERSION.tar.gz
45 pushd $PKGNAME-$PKGVERSION 45 cd $PKGNAME-$PKGVERSION
46 46
47 CC="$CC" \ 47 CC="$CC" \
48 CFLAGS="$CFLAGS" \ 48 CFLAGS="$CFLAGS" \
49 LDFLAGS="$LDFLAGS" \ 49 LDFLAGS="$LDFLAGS" \
50 LIBS="$LIBS" \ 50 LIBS="$LIBS" \
55 --without-selinux \ 55 --without-selinux \
56 $with_nls 56 $with_nls
57 make 57 make
58 make install DESTDIR=$DESTDIR 58 make install DESTDIR=$DESTDIR
59 59
60 popd 60 cd ..
61 rm -rf $PKGNAME-$PKGVERSION 61 rm -rf $PKGNAME-$PKGVERSION
62 } 62 }