morpheus

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

commit a264666ff2ba01ef4bd3f643de3a3e5e7e0c6995
parent 70524ec9e2075239a5fa9c8634a529728f26d17d
Author: sin <sin@2f30.org>
Date:   Fri, 27 Sep 2013 11:19:39 +0100

Fix up libdir for sed and gawk

Diffstat:
Mpkgs/gawk | 3+--
Mpkgs/sed | 3+--
2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/pkgs/gawk b/pkgs/gawk @@ -13,8 +13,7 @@ unpack() { build() { pushd src/gawk-4.1.0 CC="x86_64-linux-musl-gcc -static" ./configure --prefix=$root --disable-nls \ - --libdir=$root/devel/x86_64-linux-musl/lib \ - --libexecdir=$root/devel/x86_64-linux-musl/libexec || return 1 + --libdir=$libcroot/lib || return 1 make -j$nprocs || return 1 popd } diff --git a/pkgs/sed b/pkgs/sed @@ -13,8 +13,7 @@ unpack() { build() { pushd src/sed-4.2 CC="x86_64-linux-musl-gcc -static" ./configure --prefix=$root --disable-nls \ - --libdir=$root/devel/x86_64-linux-musl/lib \ - --libexecdir=$root/devel/x86_64-linux-musl/libexec || return 1 + --libdir=$libcroot/lib || return 1 make -j$nprocs || return 1 popd }