summaryrefslogtreecommitdiffstats
path: root/bld/install-mo
blob: d11fa9f84b70a8206b0935262162a62f505078a2 (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 $1/${f%.mo}/LC_MESSAGES/dnsmasq.mo
done