Revert previous commit from Sylvain, because tar-1.15, which is installed

on cgal.geometryfactory.com (an updated CentOS-5.4), does not know
the option --exclude-vcs.
This commit is contained in:
Laurent Rineau
2009-12-04 17:24:29 +00:00
parent 6adc693ac3
commit ea6f0bee11
@@ -144,7 +144,7 @@ sub install_packages() {
my $package_full_path = File::Spec->catdir($package_comes_from, $package_name);
$dont_submit="$package_full_path/dont_submit";
chdir "$package_comes_from" or die;
@command = ('tar', '-cf', "$RELEASEDIR/temppack.tar", '--exclude-vcs');
@command = ('tar', '-cf', "$RELEASEDIR/temppack.tar", '--exclude=.svn');
if( -f $dont_submit ) {
@command = (@command, "--exclude-from=$dont_submit");
}