packages: use single = not ==

This commit is contained in:
MilhouseVH 2019-05-02 00:48:39 +01:00
parent f3de4b04c8
commit b8780a0275
4 changed files with 7 additions and 7 deletions

View File

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

View File

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

View File

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

View File

@ -211,7 +211,7 @@ make_target() {
# arm64 target does not support creating uImage.
# 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
die "ERROR: KERNEL_UIMAGE_LOADADDR and KERNEL_UIMAGE_ENTRYADDR have to be set to build uImage - aborting"
fi