Files
dnsmasq/bld/install-mo
2012-01-05 17:31:11 +00:00

10 lines
184 B
Bash
Executable File

#!/bin/sh
for f in *.mo; do
install -d $1/${f/.mo/}/LC_MESSAGES
install -m 644 $f $1/${f/.mo/}/LC_MESSAGES/dnsmasq.mo
echo installing $1/${f/.mo/}/LC_MESSAGES/dnsmasq.mo
done