diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-04-06 04:18:42 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-04-06 04:18:42 +0000 |
commit | 592a8a7a7f6070b37e9d4819e1f5f68e2c1e5337 (patch) | |
tree | e1984ddf2e45397bbd79fadea669bff10f4cc326 /distrib/miniroot | |
parent | 230fb0d838f66a634ea47baba3aafe08f9decdcc (diff) |
Remove the 3.3 -> 3.4 upgrade openssl hack.
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/upgrade.sh | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/distrib/miniroot/upgrade.sh b/distrib/miniroot/upgrade.sh index 1cadc42d620..69f31ff696d 100644 --- a/distrib/miniroot/upgrade.sh +++ b/distrib/miniroot/upgrade.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: upgrade.sh,v 1.56 2004/03/23 02:39:39 krw Exp $ +# $OpenBSD: upgrade.sh,v 1.57 2004/04/06 04:18:41 krw Exp $ # $NetBSD: upgrade.sh,v 1.2.4.5 1996/08/27 18:15:08 gwr Exp $ # # Copyright (c) 1997-2004 Todd Miller, Theo de Raadt, Ken Westerback @@ -121,22 +121,6 @@ if ! umount /mnt; then fi mount_fs -# Prior to 3.4, ssl was a directory and openssl was a link to it, both in -# /usr/include and /usr/libdata/perl5/site_perl/${ARCH}-openbsd. With 3.4, -# openssl is the directory and ssl is the link. This change causes the upgrade -# of base34 and comp34 to fail, so adjust a normal pre-3.4 setup to the new -# setup. -for _dir in /mnt/usr/include /mnt/usr/libdata/perl5/site_perl/*-openbsd; do - [[ -d $_dir ]] || continue - ( cd $_dir - if [[ -d ssl && -L openssl ]]; then - rm openssl - mv ssl openssl - ln -s openssl ssl - fi - ) -done - # Install sets. install_sets |