mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
prefer homebrew gtar over ports gnutar
This commit is contained in:
parent
16aa4709a0
commit
be06213402
@ -45,7 +45,7 @@ $config = array(
|
||||
'all-add' => array('contrib'),
|
||||
// diverse binaries we need
|
||||
'svn' => trim(`which svn`),
|
||||
'tar' => trim(`which gnutar` ?: `which tar`), // tar on MacOS does not support --owner or --group
|
||||
'tar' => trim(`which gtar` ?: `which gnutar` ?: `which tar`), // tar on MacOS does not support --owner or --group
|
||||
'mv' => trim(`which mv`),
|
||||
'rm' => trim(`which rm`),
|
||||
'zip' => trim(`which zip`),
|
||||
@ -1467,4 +1467,4 @@ function usage($error=null)
|
||||
exit(90);
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user