From: Jacob Lifshay Date: Fri, 30 Apr 2021 02:01:44 +0000 (-0700) Subject: fix executable names X-Git-Tag: 0.0.3~101 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b2db06eb76d49e652d49efdcb2871872f535386;p=openpower-isa.git fix executable names --- diff --git a/Makefile b/Makefile index e7c68047..8c078e0b 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ gitupdate: # now installed as a command (/usr/local/bin/svanalysis) by setup.py svanalysis: - svanalysis + sv_analysis # now installed as a command (/usr/local/bin/pywriter) by setup.py pywriter: diff --git a/setup.py b/setup.py index 0c9f1158..5c4b6a1c 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ version = '0.0.1' install_requires = [ # ok to install using pip3 as long as it is not with the rest of Libre-SOC. # https://git.libre-soc.org/?p=nmigen.git - 'nmigen', + 'nmigen', # can be obtained with pip3, best done manually # https://git.libre-soc.org/?p=nmutil.git 'nmutil', @@ -58,7 +58,7 @@ setup( entry_points = { 'console_scripts': [ 'pywriter=openpower.decoder.pseudo.pywriter:pywriter', - 'sv_analysis=openpower.sv:sv_analysis' + 'sv_analysis=openpower.sv.sv_analysis:process_csvs' ] } )