Revision f9897b6d

b/Makefile.am
30 30
	doc/examples \
31 31
	doc/examples/hooks \
32 32
	lib \
33
	lib/build \
33 34
	lib/http \
34 35
	lib/hypervisor \
35 36
	lib/rapi \
......
57 58
	doc/examples/ganeti.cron \
58 59
	doc/examples/hooks/ipsec \
59 60
	lib/*.py[co] \
61
	lib/build/*.py[co] \
60 62
	lib/http/*.py[co] \
61 63
	lib/hypervisor/*.py[co] \
62 64
	lib/rapi/*.py[co] \
......
75 77
nodist_pkgpython_PYTHON = \
76 78
	lib/_autoconf.py
77 79

  
80
noinst_PYTHON = \
81
	lib/build/__init__.py
82

  
78 83
pkgpython_PYTHON = \
79 84
	lib/__init__.py \
80 85
	lib/asyncnotifier.py \
......
379 384
	for i in man/footer.sgml $(pkgpython_PYTHON) $(hypervisor_PYTHON) \
380 385
			$(rapi_PYTHON) $(http_PYTHON) $(confd_PYTHON) \
381 386
			$(dist_sbin_SCRIPTS) $(dist_tools_SCRIPTS) \
382
			$(dist_TESTS); do \
387
			$(dist_TESTS) $(noinst_PYTHON); do \
383 388
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
384 389
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
385 390
		fi; \
b/lib/build/__init__.py
1
#
2
#
3

  
4
# Copyright (C) 2009 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.

Also available in: Unified diff