Re: [PATCH 1/2] python: Properly uninstall __pycache__ in subdirectories

2018-07-08 Thread Lukas Fleischer
On Sat, 07 Jul 2018 at 23:43:28, Mathieu Lirzin wrote: > Lukas Fleischer writes: > > > When uninstalling __pycache__ files in a subdirectory "sub", the > > Makefile incorrectly removed the files from __pycache__/sub/ instead of > > sub/__pycache__/. > > > > * lib/am/python.am (uninstall-%DIR%PYTH

Re: [PATCH 1/2] python: Properly uninstall __pycache__ in subdirectories

2018-07-07 Thread Mathieu Lirzin
Lukas Fleischer writes: > When uninstalling __pycache__ files in a subdirectory "sub", the > Makefile incorrectly removed the files from __pycache__/sub/ instead of > sub/__pycache__/. > > * lib/am/python.am (uninstall-%DIR%PYTHON): Use the correct path when > installing byte-compiled files insta

[PATCH 1/2] python: Properly uninstall __pycache__ in subdirectories

2018-05-20 Thread Lukas Fleischer
When uninstalling __pycache__ files in a subdirectory "sub", the Makefile incorrectly removed the files from __pycache__/sub/ instead of sub/__pycache__/. * lib/am/python.am (uninstall-%DIR%PYTHON): Use the correct path when installing byte-compiled files installed in '__pycache__' subdirectories.