From 4e0ae5d6e2d832ff71c9e036ea98f698a043b431 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 16 May 2012 18:28:16 +0200 Subject: [PATCH] chroot-coreutils: create symlinks for /bin/ls and /bin/pwd. --- srcpkgs/chroot-coreutils/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/chroot-coreutils/template b/srcpkgs/chroot-coreutils/template index ca83465e2fb..40dd23649f8 100644 --- a/srcpkgs/chroot-coreutils/template +++ b/srcpkgs/chroot-coreutils/template @@ -1,6 +1,7 @@ # Template file for 'chroot-coreutils' pkgname=chroot-coreutils version=8.17 +revision=1 wrksrc=coreutils-${version} distfiles="http://ftp.gnu.org/gnu/coreutils/coreutils-$version.tar.xz" build_style=gnu-configure @@ -32,7 +33,7 @@ pre_configure() { post_install() { # Create symlinks in /bin. vmkdir bin - for f in true false echo; do + for f in true false echo ls pwd; do cd ${DESTDIR}/bin && ln -sf ../usr/bin/$f . done }