diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2024-03-14 16:57:47 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2024-03-14 23:39:23 +0000 |
commit | e990a678633ad6a4651cf1f0e195e87b755ee0be (patch) | |
tree | 51e293a5741b6ec35d932a8efe7ac9a11494f28c /PACKAGE/debian/postinst | |
parent | 66e0a52ae6c09f8fc5a821f4374ed748de418155 (diff) | |
download | lynx-snapshots-e990a678633ad6a4651cf1f0e195e87b755ee0be.tar.gz |
snapshot of project "lynx", label v2-9-0b
Diffstat (limited to 'PACKAGE/debian/postinst')
-rw-r--r-- | PACKAGE/debian/postinst | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/PACKAGE/debian/postinst b/PACKAGE/debian/postinst deleted file mode 100644 index 89955d4a..00000000 --- a/PACKAGE/debian/postinst +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/sh -# postinst script for lynx - -set -e - -PRI=50 -ALT=lynx -PKG=lynx-dev - -BINDIR=/usr/bin -MANDIR=/usr/share/man/man1 - -if [ $1 != "upgrade" ] -then - - update-alternatives \ - --install \ - $BINDIR/$ALT $ALT \ - $BINDIR/$PKG $PRI \ - --slave $MANDIR/$ALT.1.gz $ALT.1.gz \ - $MANDIR/$PKG.1.gz - -fi - -#DEBHELPER# - -exit 0 |