You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by sv...@apache.org on 2020/07/12 04:00:17 UTC

svn commit: r1879798 - in /subversion/branches/1.14.x: ./ STATUS autogen.sh

Author: svn-role
Date: Sun Jul 12 04:00:17 2020
New Revision: 1879798

URL: http://svn.apache.org/viewvc?rev=1879798&view=rev
Log:
Merge r1878413 from trunk:

 * r1878413
   autogen.sh: Remove per SWIG bindings checked files on release mode.
   Justification:
     The release tarballs should not contain .swig_*_checked files
   Votes:
     +1: futatuki, rhuijben, jamessan

Modified:
    subversion/branches/1.14.x/   (props changed)
    subversion/branches/1.14.x/STATUS
    subversion/branches/1.14.x/autogen.sh

Propchange: subversion/branches/1.14.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1878413

Modified: subversion/branches/1.14.x/STATUS
URL: http://svn.apache.org/viewvc/subversion/branches/1.14.x/STATUS?rev=1879798&r1=1879797&r2=1879798&view=diff
==============================================================================
--- subversion/branches/1.14.x/STATUS (original)
+++ subversion/branches/1.14.x/STATUS Sun Jul 12 04:00:17 2020
@@ -29,13 +29,6 @@ Approved changes:
    Votes:
      +1: futatuki, stsp, rhuijben
 
- * r1878413
-   autogen.sh: Remove per SWIG bindings checked files on release mode.
-   Justification:
-     The release tarballs should not contain .swig_*_checked files
-   Votes:
-     +1: futatuki, rhuijben, jamessan
-
  * r1878909, r1878918, r1878950
    Fix a number of thinkos in human-readable file size formatting.
    Justification:

Modified: subversion/branches/1.14.x/autogen.sh
URL: http://svn.apache.org/viewvc/subversion/branches/1.14.x/autogen.sh?rev=1879798&r1=1879797&r2=1879798&view=diff
==============================================================================
--- subversion/branches/1.14.x/autogen.sh (original)
+++ subversion/branches/1.14.x/autogen.sh Sun Jul 12 04:00:17 2020
@@ -178,8 +178,8 @@ if test -n "$RELEASE_MODE"; then
   # Build the SWIG-related files
   make -f autogen-standalone.mk autogen-swig || gen_failed=1
 
-  # Remove the .swig_checked file
-  rm -f .swig_checked
+  # Remove the .swig_*checked files
+  rm -f .swig_checked .swig_pl_checked .swig_py_checked .swig_rb_checked
 fi
 
 if test -n "$SKIP_DEPS"; then