Sin descripción

070-dont-clean-ipkg-install.patch 961B

1234567891011121314151617181920212223
  1. ---
  2. Makefile.pre.in | 6 +++---
  3. 1 file changed, 3 insertions(+), 3 deletions(-)
  4. --- a/Makefile.pre.in
  5. +++ b/Makefile.pre.in
  6. @@ -1169,12 +1169,12 @@ TAGS::
  7. # Sanitation targets -- clean leaves libraries, executables and tags
  8. # files, which clobber removes as well
  9. pycremoval:
  10. - find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
  11. + find $(srcdir) ! -path './ipkg-install/*' -name '*.py[co]' -exec rm -f {} ';'
  12. clean: pycremoval
  13. - find . -name '*.[oa]' -exec rm -f {} ';'
  14. - find . -name '*.s[ol]' -exec rm -f {} ';'
  15. - find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
  16. + find . ! -path './ipkg-install/*' -name '*.[oa]' -exec rm -f {} ';'
  17. + find . ! -path './ipkg-install/*' -name '*.s[ol]' -exec rm -f {} ';'
  18. + find . ! -path './ipkg-install/*' -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
  19. find build -name 'fficonfig.h' -exec rm -f {} ';' || true
  20. find build -name 'fficonfig.py' -exec rm -f {} ';' || true
  21. -rm -f Lib/lib2to3/*Grammar*.pickle