fix executable names
authorJacob Lifshay <programmerjake@gmail.com>
Fri, 30 Apr 2021 02:01:44 +0000 (19:01 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Fri, 30 Apr 2021 02:01:44 +0000 (19:01 -0700)
Makefile
setup.py

index e7c68047ca52cbdf2adcc9f17f06820110d5889b..8c078e0b9c1a3fd1c28c37a8d098debd3bb76fd5 100644 (file)
--- 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:
index 0c9f11585a28ebe851fa1d92400f2eb5bf92c63a..5c4b6a1c6f7aa5f7872d0459b573d51eee92df95 100644 (file)
--- 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'
         ]
     }
 )