package/alsa-utils: fix install rule for alsactl
The copy command for /usr/share/alsa missing an asterisk cause it to copy to /usr/share/alsa/alsa instead of /usr/share/alsa where it should be. Signed-off-by: Khoa Hoang <admin@khoahoang.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
fc24c5c30a
commit
6c71b52235
@ -77,7 +77,7 @@ define ALSA_UTILS_INSTALL_TARGET_CMDS
|
|||||||
fi
|
fi
|
||||||
if [ -x "$(TARGET_DIR)/usr/sbin/alsactl" ]; then \
|
if [ -x "$(TARGET_DIR)/usr/sbin/alsactl" ]; then \
|
||||||
mkdir -p $(TARGET_DIR)/usr/share/; \
|
mkdir -p $(TARGET_DIR)/usr/share/; \
|
||||||
cp -rdpf $(STAGING_DIR)/usr/share/alsa/ $(TARGET_DIR)/usr/share/alsa/; \
|
cp -rdpf $(STAGING_DIR)/usr/share/alsa/* $(TARGET_DIR)/usr/share/alsa/; \
|
||||||
fi
|
fi
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user