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

@@ -31,7 +31,7 @@ PATCHES="alembic-$portVersion.patchset"
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
commandBinDir="$binDir"
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandBinDir=$prefix/bin
fi

View File

@@ -16,8 +16,8 @@ SOURCE_DIR="lcms2-$portVersion"
ARCHITECTURES="!x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
commandSuffix="$secondaryArchSuffix"
commandBinDir="$binDir"
commandSuffix=$secondaryArchSuffix
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin

View File

@@ -12,10 +12,10 @@ ARCHITECTURES="!x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
commandSuffix=$secondaryArchSuffix
commandBinDir="$binDir"
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir="$prefix"/bin
commandBinDir=$prefix/bin
fi
libVersion="2.0.2"

View File

@@ -15,8 +15,8 @@ CHECKSUM_SHA256="66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519
ARCHITECTURES="!x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
commandSuffix="$secondaryArchSuffix"
commandBinDir="$binDir"
commandSuffix=$secondaryArchSuffix
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin

View File

@@ -15,8 +15,8 @@ ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
SECONDARY_ARCHITECTURES="?x86"
# On x86_gcc2 we don't want to install the commands in bin/<arch>/, but in bin/.
commandSuffix="$secondaryArchSuffix"
commandBinDir="$binDir"
commandSuffix=$secondaryArchSuffix
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin

View File

@@ -23,8 +23,8 @@ ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
SECONDARY_ARCHITECTURES="?x86"
# On x86_gcc2 we don't want to install the commands in bin/<arch>/, but in bin/.
commandSuffix="$secondaryArchSuffix"
commandBinDir="$binDir"
commandSuffix=$secondaryArchSuffix
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin