Commit fc2f47e9 authored by Valentine Barshak's avatar Valentine Barshak Committed by Peter Korsgaard
Browse files

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: default avatarValentine Barshak <gvaxon@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 152f2329
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -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))