Skip to content
Snippets Groups Projects
Commit b9bcee95 authored by Cristian Lalescu's avatar Cristian Lalescu
Browse files

fix possible problem with header location

parent f0b518f0
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,8 @@ header_list = (['cpp/base.hpp'] +
for fname in src_file_list])
with open('MANIFEST.in', 'w') as manifest_in_file:
for fname in ['bfps/cpp/' + fname + '.cpp' for fname in src_file_list] + header_list:
for fname in (['bfps/cpp/' + ff + '.cpp' for ff in src_file_list] +
['bfps/' + ff for ff in header_list]):
manifest_in_file.write('include {0}\n'.format(fname))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment