Browse Source

gst1-libav: Fix octeonplus hack

The proper directive is ifneq, not ifeq.

Tested on mips64 and i386 to make sure it still builds.

Signed-off-by: Rosen Penev <rosenp@gmail.com
lilik-openwrt-22.03
Rosen Penev 6 years ago
committed by GitHub
parent
commit
2eb46edaa4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      multimedia/gst1-libav/Makefile

+ 2
- 2
multimedia/gst1-libav/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=gst1-libav
PKG_VERSION:=1.15.2
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org> \
Ted Hess <thess@kitschensync.net>
@ -143,7 +143,7 @@ LIBAV_CONFIGURE_PARSERS:=$(call FILTER_CONFIG,PARSER,parser,$(LIBAV_PARSERS))
LIBAV_CONFIGURE_PROTOCOLS:=$(call FILTER_CONFIG,PROTOCOL,protocol,$(LIBAV_PROTOCOLS))
#hack to build on mips64
ifeq ($(CONFIG_CPU_TYPE),octeonplus)
ifneq ($(CONFIG_CPU_TYPE),octeonplus)
REAL_CPU_TYPE:=octeon+
else
# Strip off FPU notation


Loading…
Cancel
Save