You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/05/05 16:27:37 UTC

svn commit: r1479329 - /subversion/trunk/Makefile.in

Author: danielsh
Date: Sun May  5 14:27:37 2013
New Revision: 1479329

URL: http://svn.apache.org/r1479329
Log:
Unbreak 'make clean-ctypes-python'.

* Makefile.in
  (CTYPES_BUILD_OUTPUTS): Remove.
  (clean-ctypes-python): Hardcode its value.  This fixes some quoting issues.

Modified:
    subversion/trunk/Makefile.in

Modified: subversion/trunk/Makefile.in
URL: http://svn.apache.org/viewvc/subversion/trunk/Makefile.in?rev=1479329&r1=1479328&r2=1479329&view=diff
==============================================================================
--- subversion/trunk/Makefile.in (original)
+++ subversion/trunk/Makefile.in Sun May  5 14:27:37 2013
@@ -892,10 +892,9 @@ check-ctypes-python: ctypes-python
 
 # If any of those files exists, run ctypes' 'setup.py clean'.  We don't run
 # it otherwise because it spams stdout+stderr; see r1479326.
-CTYPES_BUILD_OUTPUTS="build csvn/core/functions.py svn_all.py svn_all2.py"
 clean-ctypes-python:
 	cd $(CTYPES_PYTHON_SRC_DIR);            \
-	  for b in $(CTYPES_BUILD_OUTPUTS) ; do \
+	  for b in build csvn/core/functions.py svn_all.py svn_all2.py ; do \
 	    if [ -e "$$b" ] ; then              \
 	      $(PYTHON) setup.py clean --all;   \
 	      break;                            \