From f30382b08419033079166dcdddf0ac83a83c06da Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 28 Aug 2012 09:19:10 +0200 Subject: [PATCH] dash: only create sh symlink in /usr/bin. --- srcpkgs/dash/INSTALL | 7 ++----- srcpkgs/dash/template | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/srcpkgs/dash/INSTALL b/srcpkgs/dash/INSTALL index 0bec70e925..7acbd6ba4f 100644 --- a/srcpkgs/dash/INSTALL +++ b/srcpkgs/dash/INSTALL @@ -1,9 +1,6 @@ case ${ACTION} in pre) - # Create /bin/sh and /usr/bin/sh symlinks to /usr/bin/dash. - # - # It's expected that will make a dangling symlink, but once that - # dash is unpacked it will be ok. - cd usr/bin && ln -sf dash sh && ln -sf dash ../../bin/sh + # Create /usr/bin/sh symlink to dash. + cd usr/bin && ln -sf dash sh ;; esac diff --git a/srcpkgs/dash/template b/srcpkgs/dash/template index 37ad7b7a7c..18d3c42178 100644 --- a/srcpkgs/dash/template +++ b/srcpkgs/dash/template @@ -1,7 +1,7 @@ # Template file for 'dash' pkgname=dash version=0.5.7 -revision=3 +revision=4 build_style=gnu-configure register_shell="/bin/sh" depends="coreutils"