summaryrefslogtreecommitdiff
path: root/bld/install-mo
blob: ab543014192c9d6d8657ff20cbd2f1e984788e53 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for f in *.mo; do
  $2 -m 755 -d $1/${f%.mo}/LC_MESSAGES
  $2 -m 644 $f $1/${f%.mo}/LC_MESSAGES/dnsmasq.mo
  echo installing ${f%.mo}/LC_MESSAGES/dnsmasq.mo
done