morpheus

suckless linux distro
git clone git://git.2f30.org/morpheus
Log | Files | Refs | Submodules | README | LICENSE

commit 8ffb318e5fd3fbb08cb2e25ea1f61a2cfa3fbd9b
parent 10446c2e4935bade6d4a1b16e9c5e2dee66fd51f
Author: sin <sin@2f30.org>
Date:   Thu, 20 Feb 2014 16:32:32 +0000

Return in case of a build or install error

Diffstat:
Mpkgs/ubase | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pkgs/ubase b/pkgs/ubase @@ -7,13 +7,13 @@ fetch() { build() { cd src/ubase make clean - make -j$nprocs CC=x86_64-linux-musl-gcc LDFLAGS=-static + make -j$nprocs CC=x86_64-linux-musl-gcc LDFLAGS=-static || return 1 cd - } install() { cd src/ubase - make PREFIX="$root" install + make PREFIX="$root" install || return 1 chmod 4755 "$root/bin/su" cd - }