mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-06-14 07:25:08 +00:00

I recently noticed that the generated tarballs with "make dist" were incomplete unless the configure script was run on a machine with all possible build dependencies. That's wrong as you clearly don't need those dependencies to generate the tarball. This change fixes that. Signed-off-by: Stéphane Graber <stgraber@ubuntu.com> Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
22 lines
387 B
Makefile
22 lines
387 B
Makefile
if ENABLE_EXAMPLES
|
|
pkgexamplesdir=$(docdir)/examples
|
|
|
|
pkgexamples_DATA = \
|
|
lxc-macvlan.conf \
|
|
lxc-vlan.conf \
|
|
lxc-no-netns.conf \
|
|
lxc-empty-netns.conf \
|
|
lxc-phys.conf \
|
|
lxc-veth.conf \
|
|
lxc-complex.conf
|
|
endif
|
|
|
|
noinst_DATA = \
|
|
lxc-macvlan.conf.in \
|
|
lxc-vlan.conf.in \
|
|
lxc-empty-netns.conf.in \
|
|
lxc-no-netns.conf.in \
|
|
lxc-phys.conf.in \
|
|
lxc-veth.conf.in \
|
|
lxc-complex.conf.in
|