Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
make code simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf authored and dimpase committed Jul 21, 2019
1 parent 12f5129 commit b5de899
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/sage/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,5 @@ def cython_aliases():
# This is not a problem in practice since LinBox depends on
# fflas-ffpack and fflas-ffpack does add such a C++11 flag.
aliases["LINBOX_CFLAGS"].append("-std=gnu++11")
if os.environ.get('SAGE_ARB_LIBRARY'):
aliases["ARB_LIBRARY"] = os.environ['SAGE_ARB_LIBRARY']
else:
aliases["ARB_LIBRARY"] = 'arb'
aliases["ARB_LIBRARY"] = os.environ.get('SAGE_ARB_LIBRARY', 'arb')
return aliases

0 comments on commit b5de899

Please sign in to comment.