morpheus

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

commit ecc7dd352fb8e5c6a16805c7f8f9be5cdbf47998
parent 4eb3e5ab4beadc9076ef6b25e7b1696e712564b1
Author: sin <sin@2f30.org>
Date:   Tue, 24 Sep 2013 17:53:47 +0100

Add --libdir and --libexecdir and fix typo

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

diff --git a/pkgs/gawk b/pkgs/gawk @@ -14,7 +14,7 @@ build() { pushd src/gawk-4.1.0 CC="musl-gcc -static" ./configure --prefix=$root --disable-nls \ --libdir=$root/devel/x86_64-linux-musl/lib \ - --libexecdir=$root/deve/x86_64-linux-musl/libexec || return 1 + --libexecdir=$root/devel/x86_64-linux-musl/libexec || return 1 make -j$nprocs || return 1 popd } diff --git a/pkgs/sed b/pkgs/sed @@ -12,7 +12,9 @@ unpack() { build() { pushd src/sed-4.2 - CC="musl-gcc -static" ./configure --prefix=$root --disable-nls || return 1 + CC="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 make -j$nprocs || return 1 popd } diff --git a/pkgs/wget b/pkgs/wget @@ -12,7 +12,9 @@ unpack() { build() { pushd src/wget-1.14 - CC="musl-gcc -static" ./configure --prefix=$root --without-ssl || return 1 + CC="musl-gcc -static" ./configure --prefix=$root --without-ssl \ + --libdir=$root/devel/x86_64-linux-musl/lib \ + --libexecdir=$root/devel/x86_64-linux-musl/libexec || return 1 make -j$nprocs || return 1 popd }