~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to sourcecode/Makefile

  • Committer: Guilherme Salgado
  • Date: 2010-04-28 18:25:11 UTC
  • mto: This revision was merged to the branch mainline in revision 10969.
  • Revision ID: salgado@canonical.com-20100428182511-3m56yrajzkwts7jl
Get rid of PYTHON_VERSION from all Makefiles and use a customized pygettextpo which uses the default system python instead of what's defined in PYTHON_VERSION

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# XXX: Nasty hack to make sure the default python is used when
2
 
# building/running.  Specially useful for source deps like pygettextpo.
3
 
PYTHON_VERSION:=$(shell python -c 'import sys; print ".".join(["%d" % n for n in sys.version_info[:2]])')
4
 
PYTHON=python${PYTHON_VERSION}
 
1
PYTHON=python
5
2
# Not all packages have a working Makefile. Work around this by hardcoding
6
3
# the ones we test.  If we fix them all to have EITHER a good makefile
7
4
# (build and check targets work), or no makefile we can reenable auto
9
6
build_dirs:=cscvs dulwich pygettextpo pygpgme subvertpy
10
7
test_dirs:=cscvs pygettextpo
11
8
 
12
 
TEST_ENV_VARS = \
13
 
  PYTHON=$(PYTHON) \
14
 
  PYTHON_VERSION=$(PYTHON_VERSION)
 
9
TEST_ENV_VARS = PYTHON=$(PYTHON)
15
10
 
16
11
all:
17
12