Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.133.133.251
#!/bin/sh -e
# texlive-binaries postinst, created 2009 by Norbert Preining
# probably not copyrightable as it looks now, but anyway the code maybe
# freely copied, distributed and/or modified
# deactivate the xdvi.bin alternative
case "$1" in
upgrade)
;;
*)
update-alternatives --remove xdvi.bin /usr/bin/xdvi-xaw
update-alternatives --remove bibtex /usr/bin/bibtex.original
;;
esac
|