Drop some quotes to make the recipes consistent with the wiki.

The quotes around $binDir and $prefix are not needed in the
definitions of commandBinDir. There are over 120 recipes which
define commandBinDir, and *most* of them don't have quotes in
the lines defining commandBinDir and commandSuffix.

15 recipes were not consistent with the wiki. Now they are.
This commit is contained in:
fbrosson
2018-09-22 11:16:03 +00:00
parent dbb24cbd5f
commit ea3f4cd92e
15 changed files with 31 additions and 31 deletions

View File

@@ -17,10 +17,10 @@ SECONDARY_ARCHITECTURES="?x86_gcc2 x86"
# Provide cmd:xxhash on all primary architectures except x86_gcc2,
# as well as on x86 secondary arch if the primary arch is x86_gcc2.
commandBinDir="$binDir"
commandBinDir=$binDir
provideRuntime=yes
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandBinDir="$prefix"/bin
commandBinDir=$prefix/bin
else
if [ -n "$secondaryArchSuffix" ]; then
provideRuntime=no

View File

@@ -18,11 +18,11 @@ SECONDARY_ARCHITECTURES="?x86_gcc2 x86"
# Provide cmd:xxhash on all primary architectures except x86_gcc2,
# as well as on x86 secondary arch if the primary arch is x86_gcc2.
commandSuffix=$secondaryArchSuffix
commandBinDir="$binDir"
commandBinDir=$binDir
provideRuntime=yes
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir="$prefix"/bin
commandBinDir=$prefix/bin
else
if [ -n "$secondaryArchSuffix" ]; then
provideRuntime=no