1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-16 08:48:34 +00:00

Add --libdir and --libexecdir and fix typo

This commit is contained in:
sin 2013-09-24 17:53:47 +01:00
parent 4eb3e5ab4b
commit ecc7dd352f
3 changed files with 7 additions and 3 deletions

@ -14,7 +14,7 @@ build() {
pushd src/gawk-4.1.0 pushd src/gawk-4.1.0
CC="musl-gcc -static" ./configure --prefix=$root --disable-nls \ CC="musl-gcc -static" ./configure --prefix=$root --disable-nls \
--libdir=$root/devel/x86_64-linux-musl/lib \ --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 make -j$nprocs || return 1
popd popd
} }

@ -12,7 +12,9 @@ unpack() {
build() { build() {
pushd src/sed-4.2 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 make -j$nprocs || return 1
popd popd
} }

@ -12,7 +12,9 @@ unpack() {
build() { build() {
pushd src/wget-1.14 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 make -j$nprocs || return 1
popd popd
} }