libdvdnav: Fix dvdnav-config

This fixes path prefix in the staging dvdnav-config
and removes dvdnav-config from the target filesystem
if BR2_HAVE_DEVFILES is not set.

Signed-off-by: Valentine Barshak <gvaxon@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Valentine Barshak 2012-09-26 09:33:51 +00:00 committed by Peter Korsgaard
parent 152f2329e4
commit fc2f47e9ae
1 changed files with 14 additions and 0 deletions

View File

@ -16,4 +16,18 @@ LIBDVDNAV_DEPENDENCIES = libdvdread host-pkg-config
# of cross compilation, we prefer using pkg-config.
LIBDVDNAV_CONF_OPT = --with-dvdread-config="$(PKG_CONFIG_HOST_BINARY) dvdread"
define LIBDVDNAV_TARGET_CLEANUP
$(RM) -f $(TARGET_DIR)/usr/bin/dvdnav-config
endef
ifneq ($(BR2_HAVE_DEVFILES),y)
LIBDVDNAV_POST_INSTALL_TARGET_HOOKS += LIBDVDNAV_TARGET_CLEANUP
endif
define LIBDVDNAV_STAGING_FIXUP_DVDNAV_CONFIG
$(SED) "s,prefix=/usr,prefix=$(STAGING_DIR)/usr," $(STAGING_DIR)/usr/bin/dvdnav-config
endef
LIBDVDNAV_POST_INSTALL_STAGING_HOOKS += LIBDVDNAV_STAGING_FIXUP_DVDNAV_CONFIG
$(eval $(autotools-package))