Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | for f in *.mo; do | ||||
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 4 | $2 -m 755 -d $1/${f%.mo}/LC_MESSAGES |
5 | $2 -m 644 $f $1/${f%.mo}/LC_MESSAGES/dnsmasq.mo | ||||
Simon Kelley | 2484894 | 2012-02-29 11:23:41 +0000 | [diff] [blame] | 6 | echo installing ${f%.mo}/LC_MESSAGES/dnsmasq.mo |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 7 | done |
8 | |||||
9 |