~ubuntu-branches/ubuntu/wily/nettle/wily

« back to all changes in this revision

Viewing changes to debian/nettle-bin.postinst

  • Committer: Package Import Robot
  • Author(s): Magnus Holmgren
  • Date: 2013-05-07 22:57:14 UTC
  • mfrom: (8.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20130507225714-s331yr8ov53dtt17
Tags: 2.7-2
Tag some (ECC related) symbols that only exist on some architectures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
# Replace documentation directory with symlink
6
 
docdir="/usr/share/doc/nettle-bin"
7
 
if [ -d $docdir ] && [ ! -L $docdir ]; then
8
 
    if rmdir $docdir 2>/dev/null; then
9
 
        ln -sf libnettle4 $docdir
10
 
    fi
11
 
fi
12
 
 
13
 
#DEBHELPER#