Skip to content

Commit

Permalink
Merge branch 'Release02x01'
Browse files Browse the repository at this point in the history
  • Loading branch information
gac410 committed Nov 14, 2016
2 parents 682848b + 9a11a49 commit 036f698
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
5 changes: 1 addition & 4 deletions PatternSkin/data/System/PatternSkinCssCookbook.txt
@@ -1,4 +1,4 @@
%META:TOPICINFO{author="ProjectContributor" date="1426813108" format="1.1" version="1"}%
%META:TOPICINFO{author="ProjectContributor" date="1479139667" format="1.1" version="1"}%
%META:TOPICPARENT{name="PatternSkin"}%
---+!! %SYSTEMWEB%.PatternSkin CSS Cookbook

Expand Down Expand Up @@ -70,9 +70,6 @@ This is the complete style definition to set the height of the top bar:

<verbatim class='css'>
#patternTopBar,
#patternClearHeaderCenter,
#patternClearHeaderLeft,
#patternClearHeaderRight,
#patternTopBarContents {
height:75px; /* top bar height; make room for header columns */
overflow:hidden;
Expand Down
19 changes: 12 additions & 7 deletions core/lib/Foswiki/Configure/FileUtil.pm
Expand Up @@ -712,14 +712,19 @@ sub _getTar {

# Trying to find gnutar in order to keep as much compatibility with
# linux as we can.
my $gnutar = `which gnutar`;
if ( $? == 0 && $gnutar ) {
chomp $gnutar;
if ( _getTarFamily($gnutar) eq 'gnu' ) {
$tarCmd = $gnutar;
$tarFamily = 'gnu';
}
my $gnutar;
TAR_UTIL:
foreach my $utilname (qw(gtar gnutar)) {
$gnutar = `which $utilname`;
if ( $? == 0 && $gnutar ) {
chomp $gnutar;
if ( _getTarFamily($gnutar) eq 'gnu' ) {
$tarCmd = $gnutar;
$tarFamily = 'gnu';
last TAR_UTIL;
}

}
}

}
Expand Down

0 comments on commit 036f698

Please sign in to comment.