Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: Makefile
===================================================================
--- Makefile	(.../2.5.0-x86_32)	(revision 444)
+++ Makefile	(.../2.6.4-x86_32)	(revision 445)
@@ -12,13 +12,13 @@
 
 SOURCE_REQUIRES    = sources/packages/l/expat
 
-REQUIRES           = libs/expat/2.5.0
+REQUIRES           = libs/expat/2.6.4
 REQUIRES          += libs/glibc/2.41-x86_32
 
 # ======= __END_OF_REQUIRES__ =======
 
 
-version            = 2.5.0
+version            = 2.6.4
 tar_xz_archive     = $(SRC_PACKAGE_PATH)/packages/l/expat/expat-$(version).tar.xz
 SRC_ARCHIVE        = $(tar_xz_archive)
 SRC_DIR            = $(TARGET_BUILD_DIR)/expat-$(version)
@@ -40,7 +40,7 @@
 # *PKG_NAME & *PKG_VERSION shouldn't be a reference to value.
 #
 EXPAT_32_PKG_NAME                = expat-x32
-EXPAT_32_PKG_VERSION             = 2.5.0
+EXPAT_32_PKG_VERSION             = 2.6.4
 EXPAT_32_PKG_ARCH                = $(PKGARCH)
 EXPAT_32_PKG_DISTRO_NAME         = $(DISTRO_NAME)
 EXPAT_32_PKG_DISTRO_VERSION      = $(DISTRO_VERSION)
@@ -115,20 +115,20 @@
 	@rm -rf $(EXPAT_32_PKG)/usr/share
 	# ======= remove toolchain path from target libtool *.la files =======
 	@( cd $(EXPAT_32_PKG)/usr/lib$(MULTILIB_X86_32_SUFFIX) ; \
-	   sed -i "s,$(TARGET_DEST_DIR),,g" libexpat.la \
+	   sed -i "s,$(TARGET_DEST_DIR),,g" libexpat.la ; \
 	 )
 	# ======= Install the same to $(TARGET_DEST_DIR) =======
 	$(call install-into-devenv, $(EXPAT_32_PKG))
 	# ======= tune libtool *.la search path to the target destination for development =======
 	@( cd $(TARGET_DEST_DIR)/usr/lib$(MULTILIB_X86_32_SUFFIX) ; \
-	   sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" libexpat.la ; \
-	   sed -i "s,L/lib,L$(TARGET_DEST_DIR)/lib,g" libexpat.la \
+	   sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g"   libexpat.la ; \
+	   sed -i "s,L/lib,L$(TARGET_DEST_DIR)/lib,g" libexpat.la ; \
 	 )
 	# ======= tune pkg-config *.pc search path to the target destination for development =======
 	@( cd $(TARGET_DEST_DIR)/usr/lib$(MULTILIB_X86_32_SUFFIX)/pkgconfig ; \
-	   sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" expat.pc \
+	   sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" expat.pc ; \
 	 )
-	# =======Strip binaries =======
+	# ======= Strip binaries =======
 	@( cd $(EXPAT_32_PKG) ; \
 	   find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs $(STRIP) --strip-unneeded 2> /dev/null ; \
 	   find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs $(STRIP) --strip-unneeded 2> /dev/null ; \