libdvdread: Fix dvdread-config

This fixes path prefix in the staging dvdread-config
and removes dvdread-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:08 +00:00 committed by Peter Korsgaard
parent 437a4446f2
commit 152f2329e4

View File

@ -11,4 +11,18 @@ LIBDVDREAD_AUTORECONF = YES
LIBDVDREAD_LIBTOOL_PATCH = YES
LIBDVDREAD_INSTALL_STAGING = YES
define LIBDVDREAD_TARGET_CLEANUP
$(RM) -f $(TARGET_DIR)/usr/bin/dvdread-config
endef
ifneq ($(BR2_HAVE_DEVFILES),y)
LIBDVDREAD_POST_INSTALL_TARGET_HOOKS += LIBDVDREAD_TARGET_CLEANUP
endif
define LIBDVDREAD_STAGING_FIXUP_DVDREAD_CONFIG
$(SED) "s,prefix=/usr,prefix=$(STAGING_DIR)/usr," $(STAGING_DIR)/usr/bin/dvdread-config
endef
LIBDVDREAD_POST_INSTALL_STAGING_HOOKS += LIBDVDREAD_STAGING_FIXUP_DVDREAD_CONFIG
$(eval $(autotools-package))