Merge pull request #3483 from MilhouseVH/le10_equality_fixup

packages: use single = not == for string comparison
This commit is contained in:
CvH 2019-05-04 07:35:51 +02:00 committed by GitHub
commit 9ba70c2b8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View File

@ -14,7 +14,7 @@ PKG_BUILD_FLAGS="-gold"
# Dependencies # Dependencies
get_graphicdrivers get_graphicdrivers
if [ "$KODIPLAYER_DRIVER" == "bcm2835-driver" ]; then if [ "$KODIPLAYER_DRIVER" = "bcm2835-driver" ]; then
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET bcm2835-driver" PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET bcm2835-driver"
fi fi
@ -40,7 +40,7 @@ pre_configure_target() {
CFLAGS="$CFLAGS -I$(get_build_dir gnutls)/.INSTALL_PKG/usr/include" CFLAGS="$CFLAGS -I$(get_build_dir gnutls)/.INSTALL_PKG/usr/include"
LDFLAGS="$LDFLAGS -L$(get_build_dir gnutls)/.INSTALL_PKG/usr/lib" LDFLAGS="$LDFLAGS -L$(get_build_dir gnutls)/.INSTALL_PKG/usr/lib"
if [ "$KODIPLAYER_DRIVER" == "bcm2835-driver" ]; then if [ "$KODIPLAYER_DRIVER" = "bcm2835-driver" ]; then
CFLAGS="$CFLAGS -DRPI=1 -I$SYSROOT_PREFIX/usr/include/IL" CFLAGS="$CFLAGS -DRPI=1 -I$SYSROOT_PREFIX/usr/include/IL"
PKG_FFMPEG_LIBS="-lbcm_host -ldl -lmmal -lmmal_core -lmmal_util -lvchiq_arm -lvcos -lvcsm" PKG_FFMPEG_LIBS="-lbcm_host -ldl -lmmal -lmmal_core -lmmal_util -lvchiq_arm -lvcos -lvcsm"
fi fi
@ -48,7 +48,7 @@ pre_configure_target() {
# HW encoders # HW encoders
# RPi 0-3 # RPi 0-3
if [ "$KODIPLAYER_DRIVER" == "bcm2835-driver" ]; then if [ "$KODIPLAYER_DRIVER" = "bcm2835-driver" ]; then
PKG_FFMPEG_HW_ENCODERS_RPi="\ PKG_FFMPEG_HW_ENCODERS_RPi="\
`#Video encoders` \ `#Video encoders` \
--enable-omx-rpi \ --enable-omx-rpi \

View File

@ -21,9 +21,9 @@ make_target() {
PTR64="0" PTR64="0"
NOASM="0" NOASM="0"
if [ "$ARCH" == "arm" ]; then if [ "$ARCH" = "arm" ]; then
NOASM="1" NOASM="1"
elif [ "$ARCH" == "x86_64" ]; then elif [ "$ARCH" = "x86_64" ]; then
PTR64="1" PTR64="1"
fi fi

View File

@ -28,7 +28,7 @@ pre_configure_host() {
} }
make_host() { make_host() {
if [ "$ARCH" == "arm" ]; then if [ "$ARCH" = "arm" ]; then
make -C cpu/cyclone CONFIG_FILE=../cyclone_config.h make -C cpu/cyclone CONFIG_FILE=../cyclone_config.h
fi fi
} }

View File

@ -195,7 +195,7 @@ make_target() {
# arm64 target does not support creating uImage. # arm64 target does not support creating uImage.
# Build Image first, then wrap it using u-boot's mkimage. # Build Image first, then wrap it using u-boot's mkimage.
if [[ "$TARGET_KERNEL_ARCH" == "arm64" && "$KERNEL_TARGET" == uImage* ]]; then if [[ "$TARGET_KERNEL_ARCH" = "arm64" && "$KERNEL_TARGET" = uImage* ]]; then
if [ -z "$KERNEL_UIMAGE_LOADADDR" -o -z "$KERNEL_UIMAGE_ENTRYADDR" ]; then if [ -z "$KERNEL_UIMAGE_LOADADDR" -o -z "$KERNEL_UIMAGE_ENTRYADDR" ]; then
die "ERROR: KERNEL_UIMAGE_LOADADDR and KERNEL_UIMAGE_ENTRYADDR have to be set to build uImage - aborting" die "ERROR: KERNEL_UIMAGE_LOADADDR and KERNEL_UIMAGE_ENTRYADDR have to be set to build uImage - aborting"
fi fi