From ecc7dd352fb8e5c6a16805c7f8f9be5cdbf47998 Mon Sep 17 00:00:00 2001 From: sin Date: Tue, 24 Sep 2013 17:53:47 +0100 Subject: [PATCH] Add --libdir and --libexecdir and fix typo --- pkgs/gawk | 2 +- pkgs/sed | 4 +++- pkgs/wget | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/gawk b/pkgs/gawk index a7dab98..8dff5c9 100644 --- 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 index 2cb3dcd..c79e92d 100644 --- 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 index 2828d69..7aff7e8 100644 --- 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 }