summaryrefslogtreecommitdiffhomepage
path: root/subr/post_copy_etc.subr
blob: fe48521bc33c172ff62fbf627b306e13e2f39d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# . ./build.vars and set -o errexit -o noglob are assumed.
#

post_copy_etc() {
	tar -C etc -cpf - midipix.sh README midipix_shortcut.vbs	|\
	tar -C ${PREFIX} -xpf -;
	chmod +x ${PREFIX}/midipix.sh;
};

# vim:filetype=sh