From 0b2db06eb76d49e652d49efdcb2871872f535386 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Thu, 29 Apr 2021 19:01:44 -0700 Subject: [PATCH] fix executable names --- Makefile | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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' ] } ) -- 2.30.2