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 }