You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Matt Massie (JIRA)" <ji...@apache.org> on 2010/02/23 19:44:27 UTC

[jira] Created: (AVRO-430) Remove subversion directories from Avro C tarball

Remove subversion directories from Avro C tarball
-------------------------------------------------

                 Key: AVRO-430
                 URL: https://issues.apache.org/jira/browse/AVRO-430
             Project: Avro
          Issue Type: Improvement
          Components: c
            Reporter: Matt Massie
            Assignee: Matt Massie


When a directory is included in an EXTRA_DIST list, all contents are recursively included.  This cases a few directories to include '.svn' directories.  This patch ensures there are no '.svn' directories in the distributed tarball for Avro C.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AVRO-430) Remove subversion directories from Avro C tarball

Posted by "Matt Massie (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AVRO-430?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12837380#action_12837380 ] 

Matt Massie commented on AVRO-430:
----------------------------------

Simple patch

{code}
--- lang/c/Makefile.am	(revision 915466)
+++ lang/c/Makefile.am	(working copy)
@@ -%ld,%ld +%ld,%ld @@
 EXTRA_DIST=version.sh m4
 SUBDIRS = docs jansson src tests examples
 
+# Make sure we never package up '.svn' directories
+dist-hook:
+	find $(distdir) -name '.svn' | xargs rm -rf
+
{code}

> Remove subversion directories from Avro C tarball
> -------------------------------------------------
>
>                 Key: AVRO-430
>                 URL: https://issues.apache.org/jira/browse/AVRO-430
>             Project: Avro
>          Issue Type: Improvement
>          Components: c
>            Reporter: Matt Massie
>            Assignee: Matt Massie
>
> When a directory is included in an EXTRA_DIST list, all contents are recursively included.  This cases a few directories to include '.svn' directories.  This patch ensures there are no '.svn' directories in the distributed tarball for Avro C.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (AVRO-430) Remove subversion directories from Avro C tarball

Posted by "Matt Massie (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AVRO-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matt Massie resolved AVRO-430.
------------------------------

    Resolution: Fixed

Committed to trunk

> Remove subversion directories from Avro C tarball
> -------------------------------------------------
>
>                 Key: AVRO-430
>                 URL: https://issues.apache.org/jira/browse/AVRO-430
>             Project: Avro
>          Issue Type: Improvement
>          Components: c
>            Reporter: Matt Massie
>            Assignee: Matt Massie
>
> When a directory is included in an EXTRA_DIST list, all contents are recursively included.  This cases a few directories to include '.svn' directories.  This patch ensures there are no '.svn' directories in the distributed tarball for Avro C.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.