~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Gary Poster
  • Date: 2009-08-12 17:42:35 UTC
  • mto: This revision was merged to the branch mainline in revision 9100.
  • Revision ID: gary.poster@canonical.com-20090812174235-7n849epadgk67bow
squelch PYTHONPATH from our scripts.  That was a bad idea; will revert in zc.buildout

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
# warning before the eggs directory is made.  The target for the eggs directory
131
131
# is only there for deployment convenience.
132
132
bin/buildout: download-cache eggs
133
 
        $(SHHH) $(PYTHON) bootstrap.py --ez_setup-source=ez_setup.py \
 
133
        $(SHHH) PYTHONPATH= $(PYTHON) bootstrap.py\
 
134
                --ez_setup-source=ez_setup.py \
134
135
                --download-base=download-cache/dist --eggs=eggs
135
136
 
136
137
$(PY): bin/buildout versions.cfg $(BUILDOUT_CFG) setup.py
137
 
        $(SHHH) ./bin/buildout configuration:instance_name=${LPCONFIG} -c $(BUILDOUT_CFG)
 
138
        $(SHHH) PYTHONPATH= ./bin/buildout \
 
139
                configuration:instance_name=${LPCONFIG} -c $(BUILDOUT_CFG)
138
140
 
139
141
compile: $(PY)
140
142
        ${SHHH} $(MAKE) -C sourcecode build PYTHON=${PYTHON} \