You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/08/14 03:43:04 UTC

[arrow] branch master updated: ARROW-3034: [Packaging] Resolve symbolic link in tar.gz

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 7c93d0a  ARROW-3034: [Packaging] Resolve symbolic link in tar.gz
7c93d0a is described below

commit 7c93d0a8f102774587c9fe28de1ef895db872a4c
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Mon Aug 13 23:42:57 2018 -0400

    ARROW-3034: [Packaging] Resolve symbolic link in tar.gz
    
    Because bsdtar on MSYS2 can't extract tar.gz that includes symlink.
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #2417 from kou/packaging-resolve-symlink and squashes the following commits:
    
    ef360240 <Kouhei Sutou>  Resolve symbolic link in tar.gz
---
 dev/release/02-source.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release/02-source.sh b/dev/release/02-source.sh
index e72bb5d..b88a580 100755
--- a/dev/release/02-source.sh
+++ b/dev/release/02-source.sh
@@ -107,7 +107,7 @@ rm -rf ${tag}/c_glib
 mv tmp-c_glib ${tag}/c_glib
 
 # Create new tarball from modified source directory
-tar czf ${tarball} ${tag}
+tar czhf ${tarball} ${tag}
 rm -rf ${tag}
 
 ${SOURCE_DIR}/run-rat.sh ${tarball}