You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
set -e
|
|
if [ "${BASEDIR:=/}" = "/" ]; then
|
|
BASEDIR=""
|
|
fi
|
|
|
|
update-alternatives --install \
|
|
/usr/bin/qtconfig qtconfig "/usr/bin/tqtconfig" "45" \
|
|
--slave /usr/share/man/man1/qtconfig.1.gz qtconfig.1.gz \
|
|
"/usr/share/man/man1/tqtconfig.1.gz"
|
|
|
|
#DEBHELPER#
|