File: libjson0.postinst

package info (click to toggle)
json-c 0.11-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,252 kB
  • ctags: 1,524
  • sloc: ansic: 3,898; makefile: 1,643; sh: 222
file content (15 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

DOCDIR=/usr/share/doc/libjson0
DOCLINK=libjson-c2

if [ -d $DOCDIR ] && [ ! -L $DOCDIR ]; then
    rmdir $DOCDIR
    ln -s $DOCLINK $DOCDIR
fi

#DEBHELPER#

exit 0