Skip to content
Snippets Groups Projects
Commit e63a7db6 authored by Teena Hassan's avatar Teena Hassan
Browse files

ipaaca-python conda bugs fixed

parent 8a6199c3
No related branches found
No related tags found
No related merge requests found
...@@ -12,4 +12,4 @@ ...@@ -12,4 +12,4 @@
# Since we setup subfolders for ipaaca and proto, we want to step into the ipaaca folder here # Since we setup subfolders for ipaaca and proto, we want to step into the ipaaca folder here
cd ipaaca cd ipaaca
echo "Installing ipaaca using setup.py" echo "Installing ipaaca using setup.py"
python setup.py install python setup.py install --single-version-externally-managed --record=record.txt
This diff is collapsed.
...@@ -50,7 +50,7 @@ class ProtoBuild(build_py): ...@@ -50,7 +50,7 @@ class ProtoBuild(build_py):
if (not op.exists(output) or (op.getmtime(source) > op.getmtime(output))): if (not op.exists(output) or (op.getmtime(source) > op.getmtime(output))):
sys.stderr.write('Protobuf-compiling ' + source + '\n') sys.stderr.write('Protobuf-compiling ' + source + '\n')
subprocess.check_call([self.find_protoc(), "-I={}".format(packagedir),'--python_out=.', source]) subprocess.check_call([self.find_protoc(), "-I={}".format(packagedir),'--python_out=./src/ipaaca', source])
class BDist_egg(bdist_egg): class BDist_egg(bdist_egg):
''' '''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment