Skip to content

Commit

Permalink
Fixed 'make install' when PYTHON_SITELIB is not specified
Browse files Browse the repository at this point in the history
Bumped to 0.9.24
  • Loading branch information
feist committed Sep 20, 2012
1 parent 914414e commit 8195855
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
@@ -1,3 +1,7 @@
ifndef PYTHON_SITELIB
PYTHON_SITELIB=`python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"`
endif

install:
python setup.py install --prefix ${DESTDIR}/usr
mkdir -p ${DESTDIR}/usr/sbin/
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -3,12 +3,13 @@
from distutils.core import setup

setup(name='pcs',
version='0.9.22',
version='0.9.24',
description='Pacemaker Configuration System',
author='Chris Feist',
author_email='cfeist@redhat.com',
url='http://github.com/feist/pcs',
packages=['pcs'],
package_data={'pcs':['corosync.conf.template','corosync.conf.fedora.template']},
py_modules=['pcs'],
scripts=['pcs/pcs.py']
)

0 comments on commit 8195855

Please sign in to comment.