diff options
author | Daniel Laird <danieljlaird@hotmail.com> | 2008-08-28 10:56:38 +0000 |
---|---|---|
committer | Daniel Laird <danieljlaird@hotmail.com> | 2008-08-28 10:56:38 +0000 |
commit | fb4d1b03eae9c8ee6b557c314f393198b2ab9ff0 (patch) | |
tree | 46166c57f23b4212950fde45119dabd9e1320b2b /package | |
parent | 13e2bb5620e264f05235dd18b0923d804828e025 (diff) | |
download | buildroot-novena-fb4d1b03eae9c8ee6b557c314f393198b2ab9ff0.tar.gz buildroot-novena-fb4d1b03eae9c8ee6b557c314f393198b2ab9ff0.zip |
libxml2: Post process xml2-config file to actually work and bump version
Version bumped to 2.6.31
(2.6.32 has .rej files so patch target fails - upstream need to be informed).
The xml2-config file in staging dir needs to have prefix / exec-prefix setup
to understand the staging directory location.
This then means that packages that call xml2-config to get include paths/cflags
and libs etc work properly.
This is very similar to what freetype does to freetype-config.
Diffstat (limited to 'package')
-rw-r--r-- | package/libxml2/libxml2.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libxml2/libxml2.mk b/package/libxml2/libxml2.mk index f01b21f00..5dceb2faa 100644 --- a/package/libxml2/libxml2.mk +++ b/package/libxml2/libxml2.mk @@ -3,11 +3,9 @@ # libxml2 # ############################################################# - -LIBXML2_VERSION = 2.6.29 +LIBXML2_VERSION = 2.6.31 LIBXML2_SOURCE = libxml2-sources-$(LIBXML2_VERSION).tar.gz LIBXML2_SITE = ftp://xmlsoft.org/libxml2 -LIBXML2_AUTORECONF = NO LIBXML2_INSTALL_STAGING = YES LIBXML2_INSTALL_TARGET = YES LIBXML2_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) install-strip @@ -26,6 +24,8 @@ LIBXML2_DEPENDENCIES = uclibc $(eval $(call AUTOTARGETS,package,libxml2)) $(LIBXML2_HOOK_POST_INSTALL): + $(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xml2-config + $(SED) "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xml2-config rm -rf $(TARGET_DIR)/usr/share/aclocal \ $(TARGET_DIR)/usr/share/doc/libxml2-$(LIBXML2_VERSION) \ $(TARGET_DIR)/usr/share/gtk-doc |