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

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