Skip to content

Commit

Permalink
fix type in packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninoh-FOX committed Mar 18, 2021
1 parent 482ed48 commit eeb9ee2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package/alsa-utils/alsa-utils.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ ALSA_UTILS_CONF_OPT = \
--with-curses=ncurses

ifeq ($(BR2_PACKAGE_ALSA_UTILS_ALSALOOP),y)
ALSA_UTILS_CONF_OPTS += --enable-alsaloop
ALSA_UTILS_CONF_OPT += --enable-alsaloop
else
ALSA_UTILS_CONF_OPTS += --disable-alsaloop
ALSA_UTILS_CONF_OPT += --disable-alsaloop
endif

ifeq ($(BR2_PACKAGE_ALSA_UTILS_BAT),y)
ALSA_UTILS_CONF_OPTS += --enable-bat
ALSA_UTILS_CONF_OPT += --enable-bat
# Analysis support requires fftw single precision
ALSA_UTILS_DEPENDENCIES += $(if $(BR2_PACKAGE_FFTW_SINGLE),fftw-single)
else
ALSA_UTILS_CONF_OPTS += --disable-bat
ALSA_UTILS_CONF_OPT += --disable-bat
endif

ifneq ($(BR2_PACKAGE_ALSA_UTILS_ALSAMIXER),y)
Expand Down Expand Up @@ -77,7 +77,7 @@ endef

ifeq ($(BR2_PACKAGE_ALSA_UTILS_ALSACTL)$(BR2_INIT_SYSTEMD),yy)
ALSA_UTILS_DEPENDENCIES += systemd
ALSA_UTILS_CONF_OPTS += --with-systemdsystemunitdir=/usr/lib/systemd/system
ALSA_UTILS_CONF_OPT += --with-systemdsystemunitdir=/usr/lib/systemd/system
define ALSA_UTILS_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 0644 $(@D)/alsactl/alsa-restore.service \
$(TARGET_DIR)/usr/lib/systemd/system/alsa-restore.service
Expand Down
2 changes: 1 addition & 1 deletion package/libdrm/libdrm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LIBDRM_DEPENDENCIES = \
host-pkgconf \
host-xutil_util-macros

LIBDRM_CONF_OPTS = \
LIBDRM_CONF_OPT = \
--disable-cairo-tests \
--disable-manpages

Expand Down
2 changes: 1 addition & 1 deletion package/mplayer/mplayer.mk
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ define MPLAYER_CONFIGURE_CMDS
--extra-ldflags="$(MPLAYER_LDFLAGS)" \
--yasm='' \
--enable-fbdev \
$(MPLAYER_CONF_OPTS) \
$(MPLAYER_CONF_OPT) \
--enable-cross-compile \
--disable-ivtv \
--enable-dynamic-plugins \
Expand Down
2 changes: 1 addition & 1 deletion package/sdl2_gfx/sdl2_gfx.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SDL2_GFX_LICENSE = Zlib
SDL2_GFX_LICENSE_FILES = COPYING SDL2_framerate.h
SDL2_GFX_INSTALL_STAGING = YES
SDL2_GFX_DEPENDENCIES = sdl2 host-pkgconf
SDL2_GFX_CONF_OPTS = --disable-sdltest --disable-mmx
SDL2_GFX_CONF_OPT = --disable-sdltest --disable-mmx
# configure/Makefile.in not up-to-date, causing aclocal to be used at
# build time if we don't autoreconf.
SDL2_GFX_AUTORECONF = YES
Expand Down

0 comments on commit eeb9ee2

Please sign in to comment.