Merge pull request #1019 from dscho/libstdbuf-fix

coreutils: fix libstdbuf.so.exe problem once and for all
This commit is contained in:
Алексей
2017-10-03 11:22:27 +03:00
committed by GitHub

View File

@@ -2,7 +2,7 @@
pkgname=coreutils
pkgver=8.26
pkgrel=1
pkgrel=2
pkgdesc="The basic file, shell and text manipulation utilities of the GNU operating system"
arch=('i686' 'x86_64')
license=('GPL3')
@@ -61,6 +61,10 @@ package() {
cd ${srcdir}/build-${CHOST}
make DESTDIR=${pkgdir} install
test ! -f ${pkgdir}/usr/lib/coreutils/libstdbuf.so.exe ||
mv ${pkgdir}/usr/lib/coreutils/libstdbuf.so.exe \
${pkgdir}/usr/lib/coreutils/libstdbuf.so
#mkdir -p ${pkgdir}/usr/etc
install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/dircolors.hin ${pkgdir}/etc/DIR_COLORS
}