Skip to content

Commit 065e509

Browse files
committed
fixed
1 parent 66ced12 commit 065e509

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ out/${PYTHON_LIB_NAME}: out/nvjpeg-python.o
4848
cp -f out/${PYTHON_LIB_NAME} pynvjpeg/lib/${PYTHON_LIB_NAME}
4949

5050
clean:
51-
rm -Rf out
51+
rm -Rf out dist build out pynvjpeg.egg-info
5252

5353
# install: out/${PYTHON_LIB_NAME}
5454
# cp -f out/${PYTHON_LIB_NAME} ${PYTHON_DYNLOAD_PATH}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
data_files=[
3939
('', ['nvjpeg-python.c', 'Makefile']),
40-
('nvjpeg/lib', glob.glob('%s/nvjpeg/lib/*.so' % pwd))
40+
('pynvjpeg/lib', glob.glob('%s/pynvjpeg/lib/*.so' % pwd))
4141
],
4242
install_requires=['numpy']
4343
)

0 commit comments

Comments
 (0)