Skip to content

Commit

Permalink
Fix bugs for Debian standalone installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpc-lip6 committed Jan 25, 2025
1 parent 88440a7 commit 5110135
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cumulus/src/designflow/technos.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ def __init__ ( self, checkToolkit=None ):
if 'CORIOLIS_TOP' in os.environ: Where.coriolisTop = Path( os.environ['CORIOLIS_TOP'] )
if 'ALLIANCE_TOP' in os.environ: Where.allianceTop = Path( os.environ['ALLIANCE_TOP'] )
if 'CELLS_TOP' in os.environ: Where.cellsTop = Path( os.environ['CELLS_TOP'] )
if Where.coriolisTop and not Where.allianceTop: Where.allianceTop = Where.coriolisTop
#print( Where.coriolisTop, Where.allianceTop )
if not Where.coriolisTop:
Where.coriolisTop = Path.cwd().parent
Expand All @@ -31,6 +30,7 @@ def __init__ ( self, checkToolkit=None ):
checkToolkit = Path( checkToolkit )
if not Where.cellsTop:
Where.cellsTop = checkToolkit / 'cells'
if Where.coriolisTop and not Where.allianceTop: Where.allianceTop = Where.coriolisTop
Where.checkToolkit = checkToolkit
if not Where.cellsTop and Where.allianceTop:
Where.cellsTop = Where.allianceTop / 'cells'
Expand Down
4 changes: 2 additions & 2 deletions packaging/debian.control
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ Build-Depends: debhelper-compat (= 13),
python3-wheel,
python3-virtualenv,
python3-venv,
python3-doit,
rapidjson-dev,
build-essential,
texlive-latex-recommended,
Expand All @@ -48,7 +47,8 @@ Architecture: any
Multi-Arch: foreign
Depends:
${misc:Depends},
${shlibs:Depends}
${shlibs:Depends},
python3-doit,
Description: A FOSS EDA tool suite for physical design. Provides an integrated place & route for ASICs. Support symbolic layout (Alliance) and real layout (GDS). While mainly written in C++, it has an extensive Python interface.

Package: coriolis-eda-dev
Expand Down

0 comments on commit 5110135

Please sign in to comment.