~angelsl/ubuntu/wily/gcc-5/mips-cross

« back to all changes in this revision

Viewing changes to debian/lib64stdc++CXX.postinst

  • Committer: angelsl
  • Date: 2015-10-30 03:30:35 UTC
  • Revision ID: angelsl-20151030033035-rmug41zm8hyjgisg
Original import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
 
 
3
case "$1" in
 
4
    configure)
 
5
        docdir=/usr/share/doc/lib64stdc++@CXX@
 
6
        if [ -d $docdir ] && [ ! -h $docdir ]; then
 
7
            rm -rf $docdir
 
8
            ln -s gcc-@BV@-base $docdir
 
9
        fi
 
10
esac
 
11
 
 
12
#DEBHELPER#