partio: fix a latent bug in the call to defineDebugInfoPackage.

$secondaryArchSuffix (as well as $commandSuffix) should not be
used in the call to defineDebugInfoPackage. Obviously, this
latent bug did not affect any primary arch nor the x86 2nd arch
because commandSuffix is set to the empty string in that case.
This commit is contained in:
fbrosson
2018-01-14 16:39:10 +00:00
parent 099010670c
commit ea8de9ebb1

View File

@@ -69,10 +69,10 @@ BUILD_PREREQUIRES="
"
defineDebugInfoPackage partio$secondaryArchSuffix \
$commandBinDir/partattr$commandSuffix \
$commandBinDir/partconv$commandSuffix \
$commandBinDir/partinfo$commandSuffix \
$commandBinDir/partview$commandSuffix
$commandBinDir/partattr \
$commandBinDir/partconv \
$commandBinDir/partinfo \
$commandBinDir/partview
BUILD()
{