]> granicus.if.org Git - python/commitdiff
Merged revisions 71842 via svnmerge from
authorThomas Heller <theller@ctypes.org>
Fri, 24 Apr 2009 18:27:10 +0000 (18:27 +0000)
committerThomas Heller <theller@ctypes.org>
Fri, 24 Apr 2009 18:27:10 +0000 (18:27 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71842 | thomas.heller | 2009-04-24 20:10:46 +0200 (Fr, 24 Apr 2009) | 3 lines

  Issue #5161: wrong paths for ctypes cleanup when Python is built in a
  directory other than the source directory.
........

Makefile.pre.in

index 784d256edb8ce4f1c9824143caedf64b080ed6a0..abf124ce1cfa3092c8ce3ae5663f2286d078a0a2 100644 (file)
@@ -1161,8 +1161,8 @@ docclean:
 clean: pycremoval
        find . -name '*.o' -exec rm -f {} ';'
        find . -name '*.s[ol]' -exec rm -f {} ';'
-       find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
-       find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
+       find build -name 'fficonfig.h' -exec rm -f {} ';' || true
+       find build -name 'fficonfig.py' -exec rm -f {} ';' || true
 
 profile-removal:
        find . -name '*.gc??' -exec rm -f {} ';'