From 59493eeb273677bfacb3157b9a9e8a8c509cc88d Mon Sep 17 00:00:00 2001 From: Fredrik Rinnestam Date: Sun, 21 Jun 2015 18:47:16 +0200 Subject: [PATCH] bash: no longer use bash as /bin/sh --- bash/.footprint | 2 -- bash/Pkgfile | 5 +---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/bash/.footprint b/bash/.footprint index 98fcb554..a77da7a4 100644 --- a/bash/.footprint +++ b/bash/.footprint @@ -1,10 +1,8 @@ drwxr-xr-x root/root bin/ -rwxr-xr-x root/root bin/bash -lrwxrwxrwx root/root bin/sh -> bash drwxr-xr-x root/root etc/ -rw-r--r-- root/root etc/profile drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man1/ -rw-r--r-- root/root usr/man/man1/bash.1.gz -lrwxrwxrwx root/root usr/man/man1/sh.1.gz -> bash.1.gz diff --git a/bash/Pkgfile b/bash/Pkgfile index aa1ebe77..79912cdf 100644 --- a/bash/Pkgfile +++ b/bash/Pkgfile @@ -5,7 +5,7 @@ name=bash version=4.3.39 -release=1 +release=2 source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \ $name-$version.patch.gz profile) @@ -25,7 +25,4 @@ build() { install -D -m 755 bash $PKG/bin/bash install -D -m 644 doc/bash.1 $PKG/usr/man/man1/bash.1 install -D -m 644 $SRC/profile $PKG/etc/profile - - ln -s bash $PKG/bin/sh - ln -s bash.1 $PKG/usr/man/man1/sh.1 }