blob: 23437a37b336459980400ad1c55b3d349a6eda6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
export PATH=/bin:/usr/bin
top=`pwd`
tar xvfz $src || exit 1
cd openssl-* || exit 1
./config --prefix=$top || exit 1
make || exit 1
make install || exit 1
cd $top || exit 1
rm -rf openssl-* || exit 1
|