Some cleanup and housekeeping
This commit is contained in:
parent
12ab519046
commit
fcd5acba08
57 changed files with 137 additions and 304 deletions
|
@ -15,10 +15,10 @@ ffbuild_dockerbuild() {
|
|||
mkdir zlib
|
||||
cd zlib
|
||||
|
||||
wget "$ZLIB_SRC" -O zlib.tar.gz || return -1
|
||||
tar xaf zlib.tar.gz || return -1
|
||||
wget "$ZLIB_SRC" -O zlib.tar.gz
|
||||
tar xaf zlib.tar.gz
|
||||
rm zlib.tar.gz
|
||||
cd zlib* || return -1
|
||||
cd zlib*
|
||||
|
||||
local myconf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
|
@ -33,12 +33,9 @@ ffbuild_dockerbuild() {
|
|||
return -1
|
||||
fi
|
||||
|
||||
./configure "${myconf[@]}" || return -1
|
||||
make -j$(nproc) || return -1
|
||||
make install || return -1
|
||||
|
||||
cd ../..
|
||||
rm -rf zlib
|
||||
./configure "${myconf[@]}"
|
||||
make -j$(nproc)
|
||||
make install
|
||||
}
|
||||
|
||||
ffbuild_configure() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue