Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | for f in *.mo; do | ||||
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame^] | 4 | install -m 755 -d $1/${f%.mo}/LC_MESSAGES |
Simon Kelley | 208b65c | 2006-08-05 21:41:37 +0100 | [diff] [blame] | 5 | install -m 644 $f $1/${f%.mo}/LC_MESSAGES/dnsmasq.mo |
6 | echo installing $1/${f%.mo}/LC_MESSAGES/dnsmasq.mo | ||||
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 7 | done |
8 | |||||
9 |