Commit debf12f4 authored by Maxime Hadjinlian's avatar Maxime Hadjinlian Committed by Thomas Petazzoni
Browse files

tinyalsa: Fix overwrite of asound.h



As stated by Maarten ter Huurne on the mailing list, the install of the
asound.h headers overwrite the one from the toolchains or kernel
headers.
Since tinyals's header is only a subset of the 'real' asound.h, there is
no need to overwrite it.

Signed-off-by: default avatarMaxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Maarten ter Huurne <maarten@treewalker.org>
Cc: Thomas Petazzoni  <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent ba5184a8
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -16,8 +16,6 @@ endef
define TINYALSA_INSTALL_STAGING_CMDS
	$(INSTALL) -D -m 0755 $(@D)/libtinyalsa.so \
			$(STAGING_DIR)/usr/lib/libtinyalsa.so
	$(INSTALL) -D -m 0644 $(@D)/include/sound/asound.h \
			$(STAGING_DIR)/usr/include/sound/asound.h
	$(INSTALL) -D -m 0644 $(@D)/include/tinyalsa/asoundlib.h \
			$(STAGING_DIR)/usr/include/tinyalsa/asoundlib.h
endef