openssl: rename rand.3 and err.3 to avoid conflict with man-pages.
This commit is contained in:
parent
bf2839da76
commit
cbe387cb3c
|
@ -2,7 +2,7 @@
|
|||
pkgname=openssl
|
||||
_openssl_version=1.0.1
|
||||
version=${_openssl_version}e
|
||||
revision=2
|
||||
revision=3
|
||||
fulldepends="perl"
|
||||
crossmakedepends="zlib-devel"
|
||||
conf_files="/etc/ssl/openssl.cnf"
|
||||
|
@ -55,4 +55,9 @@ do_install() {
|
|||
# Rename passwd.1, conflicts with shadow.
|
||||
mv ${DESTDIR}/usr/share/man/man1/passwd.1 \
|
||||
${DESTDIR}/usr/share/man/man1/openssl-passwd.1
|
||||
|
||||
# Rename rand.3 and err.3, conflicts with man-pages.
|
||||
for f in rand err; do
|
||||
mv ${DESTDIR}/usr/share/man/man3/${f}.3 \
|
||||
${DESTDIR}/usr/share/man/man3/openssl-${f}.3
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue