reimplement...
This commit is contained in:
parent
c28ac8147f
commit
f3a514721b
3 changed files with 16 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
|||
prepare:
|
||||
git clone https://git.savannah.gnu.org/git/gzip.git
|
||||
cd gzip
|
||||
make:
|
||||
./configure --prefix=${PREFIX}/usr --host=$LFS_TGT
|
||||
make
|
||||
install:
|
||||
make DESTDIR=$LFS install
|
||||
uninstall:
|
||||
make uninstall
|
||||
|
|
|
@ -2,5 +2,10 @@ prepare:
|
|||
git clone git://git.savannah.gnu.org/libtool.git
|
||||
cd libtool
|
||||
make:
|
||||
./bootstrap
|
||||
#
|
||||
./configure --prefix=${PREFIX}/usr
|
||||
make
|
||||
make check
|
||||
install:
|
||||
make install
|
||||
uninstall:
|
||||
make uninstall
|
||||
|
|
|
@ -2,8 +2,8 @@ prepare:
|
|||
git clone https://github.com/openssl/openssl.git
|
||||
cd openssl
|
||||
make:
|
||||
./config --prefix=$prefix/usr \
|
||||
--openssldir=$prefix/etc/ssl \
|
||||
./config --prefix=${PREFIX}/usr \
|
||||
--openssldir=${PREFIX}/etc/ssl \
|
||||
--libdir=lib \
|
||||
shared \
|
||||
zlib-dynamic
|
||||
|
|
Loading…
Reference in a new issue