blob: 1b78f65450248ee362ef30fa0ee4c59444fb5c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# file : etc/buildfile
# license : MIT; see accompanying LICENSE file
./: file{** -buildfile}
# Install into the etc/ subdirectory of, say, /usr/share/
# recreating subdirectories.
#
*:
{
install = data/etc/
install.subdirs = true
}
|