diff options
author | davidovski <david@davidovski.xyz> | 2021-12-22 22:23:43 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-12-22 22:23:43 +0000 |
commit | 7625c1b1d5d125a6de388838d3eac39473eb8177 (patch) | |
tree | 77b323725a5f18e3b65fc305909ee2145a70e99b | |
parent | 33551c70d0f7e136fe30837f61eba2a356c549a2 (diff) |
fixed xipkg and openssl
-rw-r--r-- | repo/core/openssl.xibuild | 2 | ||||
-rw-r--r-- | repo/extra/xipkg.xibuild | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/repo/core/openssl.xibuild b/repo/core/openssl.xibuild index f60c673..53c1418 100644 --- a/repo/core/openssl.xibuild +++ b/repo/core/openssl.xibuild @@ -7,7 +7,7 @@ DESC="The open source management tools and libraries for cryptography" BRANCH="OpenSSL_1_1_1-stable" build () { - ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib shared zlib-dynamic + ./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib shared zlib-dynamic make make MANSUFFIX=ssl DESTDIR=$PKG_DEST install } diff --git a/repo/extra/xipkg.xibuild b/repo/extra/xipkg.xibuild index f89a97d..ee6fb01 100644 --- a/repo/extra/xipkg.xibuild +++ b/repo/extra/xipkg.xibuild @@ -7,6 +7,7 @@ DESC="The xilinux package manager" build () { make + make DESTDIR=$PKG_DEST install } package () { |