Commit 20708e31 by Michael DeHaan

Merge pull request #4133 from skyl/DIST_MODULE_PATH

DEFAULT_MODULE_PATH in setup.py
parents 76fd60da 50bd14fa
......@@ -82,6 +82,7 @@ active_user = pwd.getpwuid(os.geteuid())[0]
# Needed so the RPM can call setup.py and have modules land in the
# correct location. See #1277 for discussion
if getattr(sys, "real_prefix", None):
# in a virtualenv
DIST_MODULE_PATH = os.path.join(sys.prefix, 'share/ansible/')
else:
DIST_MODULE_PATH = '/usr/share/ansible/'
......
......@@ -9,11 +9,11 @@ from ansible import __version__, __author__
from distutils.core import setup
# find library modules
from ansible.constants import DIST_MODULE_PATH
from ansible.constants import DEFAULT_MODULE_PATH
dirs=os.listdir("./library/")
data_files = []
for i in dirs:
data_files.append((DIST_MODULE_PATH + i, glob('./library/' + i + '/*')))
data_files.append((DEFAULT_MODULE_PATH + i, glob('./library/' + i + '/*')))
setup(name='ansible',
version=__version__,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment