From: Manoj Srivastava Date: Thu, 16 Jun 2005 05:34:08 +0000 (+0000) Subject: Removed the symlink creation X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b9349e5e65d5d6ffbb2c47dafb79cd8bf4f2b4eb;p=debian%2Fdebian-policy.git Removed the symlink creation Author: srivasta Date: 2002/10/26 18:20:29 Removed the symlink creation git-archimport-id: srivasta@debian.org--etch/debian-policy--devel--3.0--patch-147 --- diff --git a/debian/postinst.in b/debian/postinst.in index 93e2141..6b06453 100644 --- a/debian/postinst.in +++ b/debian/postinst.in @@ -5,9 +5,9 @@ # Created On : Thu Oct 29 15:23:36 1998 # Created On Node : tiamat.datasync.com # Last Modified By : Manoj Srivastava -# Last Modified On : Fri Mar 17 17:00:35 2000 +# Last Modified On : Sat Oct 26 13:19:34 2002 # Last Machine Used: glaurung.green-gryphon.com -# Update Count : 8 +# Update Count : 9 # Status : Unknown, Use with caution! # HISTORY : # Description : @@ -39,94 +39,6 @@ case "$1" in # Configure this package. If the package must prompt the user for # information, do it here. - if [ -d /usr/doc ]; then - # Well, we still need to handle this. At this point, /usr/doc - # can be a symlink - - if [ -d /usr/share/doc/$package_name ]; then - # So the new doc dir exists, goody - - # well, either one of these is a symlink, they can be - # pointing off _anywhere_ - cd /usr/doc/; - target_dir=$(/bin/pwd); - cd /usr/share/doc - starget_dir=$(/bin/pwd); - cd / - - link_target="../share/doc/$package_name"; - cd /usr/doc/; - if [ -d ../share/doc/ ]; then - cd ../share/doc/ - ltarget=$(/bin/pwd); - if [ "$starget_dir" = "$ltarget" ]; then - link_target="../share/doc/$package_name"; - else - link_target="/usr/share/doc/$package_name"; - fi - else - link_target="/usr/share/doc/$package_name" - fi - - - # Well, make sure that we do not get tripped up by the symlink - if [ -L /usr/doc/$package_name ]; then - rm -f /usr/doc/$package_name - fi - - if [ "$target_dir" != "$starget_dir" ]; then - # Ok. The directories are in different locations - if [ -d /usr/doc/$package_name ]; then - echo "Yikes! The old directory, /usr/doc/$package_name," - echo "has not ben removed! This is an error; attempting" - echo "repairs." - find /usr/doc/$package_name/ -type f -name .dhelp \ - -exec rm {} \; - find /usr/doc/$package_name/ -type d -depth \ - -exec rmdir --ignore-fail-on-non-empty {} \; - - if [ -d /usr/doc/$package_name ]; then - cat <