prefer homebrew gtar over ports gnutar

This commit is contained in:
ralf 2024-04-30 09:50:24 +02:00
parent 16aa4709a0
commit be06213402

View File

@ -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);
}
}