mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
libvpx: cleanup configure/make vars
Instead of redefining LD (and duplicating it), it is better to unset the existing value first. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
This commit is contained in:
@@ -62,12 +62,9 @@ endif
|
|||||||
|
|
||||||
# libvpx expects gcc as linker but uses $LD if provided
|
# libvpx expects gcc as linker but uses $LD if provided
|
||||||
# However, OpenWRT defines LD as *-uclibc-ld and not *-gcc
|
# However, OpenWRT defines LD as *-uclibc-ld and not *-gcc
|
||||||
CONFIGURE_VARS += \
|
CONFIGURE_VARS := $(filter-out LD=%,$(CONFIGURE_VARS)) LD="$(TARGET_CC)" \
|
||||||
CROSS=$(GNU_TARGET_NAME) \
|
CROSS=$(GNU_TARGET_NAME)
|
||||||
LD="$(TARGET_CC)" \
|
MAKE_FLAGS := $(filter-out LD=%,$(MAKE_FLAGS)) LD="$(TARGET_CC)"
|
||||||
|
|
||||||
MAKE_FLAGS += \
|
|
||||||
LD="$(TARGET_CC)" \
|
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include/vpx/
|
$(INSTALL_DIR) $(1)/usr/include/vpx/
|
||||||
|
|||||||
Reference in New Issue
Block a user