Skip to content

Commit

Permalink
Oops: Including (-L) '../lib' directory did not work correctly. (brok…
Browse files Browse the repository at this point in the history
…e in mingw additions)
  • Loading branch information
John committed Dec 19, 2011
1 parent 1df5448 commit 3b76ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supermake.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def _GenerateMakefile(self):
#Add the 'lib' directory, if in use.
additionalLibrarySearchPaths = '' #CLI args passed to compiler later on
additionalLibrarySearchPath = ''
if os.path.exists(os.path.join('..','lib')) and os.path.isdir(os.path.join('..','lib')) and os.listdir('lib'):
if os.path.exists(os.path.join('..','lib')) and os.path.isdir(os.path.join('..','lib')) and os.listdir(os.path.join('..','lib')):
additionalLibrarySearchPath = os.path.join('..','lib')
elif os.path.exists('lib') and os.path.isdir('lib') and os.listdir('lib'):
additionalLibrarySearchPath = 'lib'
Expand Down

0 comments on commit 3b76ed0

Please sign in to comment.