Browse Source

* changed indentation of tweaks for 2.2 to use tabs instead of spaces

* fixed 2.2 detection to use [[ ]] instead of [ ] because the later doesn't understand patterns
legacy/multilib
Alejandro Mery 19 years ago
parent
commit
c72e06c4e7
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      parse-config

+ 8
- 8
parse-config

@ -44,14 +44,14 @@ mnemosyne_postinstall() {
;;
esac
# tweaks that we need on 2.2
if [ "$sdever" != "2.1*" ] ; then
case "$pkg" in
kbd)
# keyboard mappings
ln -svnf /sbin/init.d/kbd "$root/etc/runit/1.d/01kbd"
;;
# tweaks that we need on 2.2
if [[ "$sdever" != "2.1*" ]] ; then
case "$pkg" in
kbd)
# keyboard mappings
ln -svnf /sbin/init.d/kbd "$root/etc/runit/1.d/01kbd"
;;
esac
fi
fi
}

Loading…
Cancel
Save