From: Maxime Hadjinlian Date: Sat, 18 Oct 2014 13:21:14 +0000 (+0200) Subject: tinyalsa: Fix overwrite of asound.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=debf12f43e908f555d12d0fbbe2cbbcb42617fd0;p=buildroot.git 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: Maxime Hadjinlian Cc: Maarten ter Huurne Cc: Thomas Petazzoni Signed-off-by: Thomas Petazzoni --- diff --git a/package/tinyalsa/tinyalsa.mk b/package/tinyalsa/tinyalsa.mk index b287e78729..48288f174a 100644 --- a/package/tinyalsa/tinyalsa.mk +++ b/package/tinyalsa/tinyalsa.mk @@ -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