Skip to content

Commit

Permalink
Fixed paths to remove 'Release' directory. We are just putting files …
Browse files Browse the repository at this point in the history
…under 'bin' so that

we can do a debug or release build of Numpy and SciPy will be able to find the .dll files
regardless.
  • Loading branch information
Jason McCampbell (Enthought, Inc) committed Jun 1, 2011
1 parent c2a7750 commit db27a45
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions iron_egg.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,10 @@ def build_egg():
arcname = arcname[:-7] + '.py'
z.write(path, arcname)

elif (fn.endswith('.dll') and fn not in ignore_libs and
'\\Release\\' in path):
elif (fn.endswith('.dll') and fn not in ignore_libs):
z.write(path, 'EGG-INFO/prefix/DLLs/' + fn)

z.write(r'numpy\NumpyDotNet\bin\Release\NumpyDotNet.dll',
z.write(r'numpy\NumpyDotNet\bin\NumpyDotNet.dll',
'EGG-INFO/prefix/DLLs/NumpyDotNet.dll')

for fn in ('msvcr100.dll', 'msvcp100.dll'):
Expand Down

0 comments on commit db27a45

Please sign in to comment.