|
@@ -13,15 +13,19 @@ LIBFFI_AUTORECONF = YES
|
|
|
|
|
|
# Move the headers to the usual location, and adjust the .pc file
|
|
# Move the headers to the usual location, and adjust the .pc file
|
|
# accordingly.
|
|
# accordingly.
|
|
-define LIBFFI_MOVE_STAGING_HEADERS
|
|
|
|
- mv $(STAGING_DIR)/usr/lib/libffi-$(LIBFFI_VERSION)/include/*.h $(STAGING_DIR)/usr/include/
|
|
|
|
|
|
+define LIBFFI_MOVE_HEADERS
|
|
|
|
+ mv $(1)/usr/lib/libffi-$(LIBFFI_VERSION)/include/*.h $(1)/usr/include/
|
|
$(SED) '/^includedir.*/d' -e '/^Cflags:.*/d' \
|
|
$(SED) '/^includedir.*/d' -e '/^Cflags:.*/d' \
|
|
- $(STAGING_DIR)/usr/lib/pkgconfig/libffi.pc
|
|
|
|
- rm -rf $(STAGING_DIR)/usr/lib/libffi-*
|
|
|
|
|
|
+ $(1)/usr/lib/pkgconfig/libffi.pc
|
|
|
|
+ rm -rf $(1)/usr/lib/libffi-*
|
|
endef
|
|
endef
|
|
|
|
|
|
|
|
+LIBFFI_MOVE_STAGING_HEADERS = $(call LIBFFI_MOVE_HEADERS,$(STAGING_DIR))
|
|
LIBFFI_POST_INSTALL_STAGING_HOOKS += LIBFFI_MOVE_STAGING_HEADERS
|
|
LIBFFI_POST_INSTALL_STAGING_HOOKS += LIBFFI_MOVE_STAGING_HEADERS
|
|
|
|
|
|
|
|
+HOST_LIBFFI_MOVE_HOST_HEADERS = $(call LIBFFI_MOVE_HEADERS,$(HOST_DIR))
|
|
|
|
+HOST_LIBFFI_POST_INSTALL_HOOKS += HOST_LIBFFI_MOVE_HOST_HEADERS
|
|
|
|
+
|
|
# Remove headers that are not at the usual location from the target
|
|
# Remove headers that are not at the usual location from the target
|
|
define LIBFFI_REMOVE_TARGET_HEADERS
|
|
define LIBFFI_REMOVE_TARGET_HEADERS
|
|
$(RM) -rf $(TARGET_DIR)/usr/lib/libffi-$(LIBFFI_VERSION)
|
|
$(RM) -rf $(TARGET_DIR)/usr/lib/libffi-$(LIBFFI_VERSION)
|