From af28b78b8e659f995b39a5dde2ce2cef0da9fbe0 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 6 Apr 2021 14:09:59 -0500 Subject: Add chapter8 script commands. --- chapter8/coreutils.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'chapter8/coreutils.sh') diff --git a/chapter8/coreutils.sh b/chapter8/coreutils.sh index 7a693aa..62ceb69 100644 --- a/chapter8/coreutils.sh +++ b/chapter8/coreutils.sh @@ -1,3 +1,25 @@ #!/bin/bash +echo $NINJAJOBS +patch -Np1 -i ../coreutils-"${VERSION}"-i18n-1.patch + +sed -i '/test.lock/s/^/#/' gnulib-tests/gnulib.mk + +autoreconf -fiv +FORCE_UNSAFE_CONFIGURE=1 ./configure \ + --prefix=/usr \ + --enable-no-install-program=kill,uptime + +make + +make -j1 install + +mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin +mv -v /usr/bin/{false,ln,ls,mkdir,mknod,mv,pwd,rm} /bin +mv -v /usr/bin/{rmdir,stty,sync,true,uname} /bin +mv -v /usr/bin/chroot /usr/sbin +mv -v /usr/share/man/man1/chroot.1 /usr/share/man/man8/chroot.8 +sed -i 's/"1"/"8"/' /usr/share/man/man8/chroot.8 + +mv -v /usr/bin/{head,nice,sleep,touch} /bin -- cgit v1.2.3-54-g00ecf