From 0e9e1f63cdf19dc45804d7b8728698f879489ee9 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 6 Mar 2018 18:25:04 +0100 Subject: Add (missing) setup.py --- src/vhdl/python/libghdl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vhdl') diff --git a/src/vhdl/python/libghdl/__init__.py b/src/vhdl/python/libghdl/__init__.py index 63a34b23c..457d6f2bd 100644 --- a/src/vhdl/python/libghdl/__init__.py +++ b/src/vhdl/python/libghdl/__init__.py @@ -9,7 +9,7 @@ _ext = {'linux': '.so', 'cygwin': '.dll'} # Load the DLL. -_basedir = os.path.join(os.path.dirname(__file__), '..') +_basedir = os.path.dirname(__file__) libghdl = ctypes.CDLL(os.path.join( _basedir, 'libghdl' + _ext.get(sys.platform, '.so'))) -- cgit v1.2.3