Revision: 6590 http://ipcop.svn.sourceforge.net/ipcop/?rev=6590&view=rev Author: gespinasse Date: 2012-04-29 20:54:53 +0000 (Sun, 29 Apr 2012) Log Message: ----------- Add a few comments why --build=$(MACHINE) is required Disable nls on toolchain and final pass
Modified Paths: -------------- ipcop/trunk/lfs/xz Modified: ipcop/trunk/lfs/xz =================================================================== --- ipcop/trunk/lfs/xz 2012-04-29 20:49:58 UTC (rev 6589) +++ ipcop/trunk/lfs/xz 2012-04-29 20:54:53 UTC (rev 6590) @@ -88,12 +88,13 @@ @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) ifeq "$(STAGE)" "toolchain" - cd $(DIR_APP) && ./configure --prefix=/$(TOOLS_DIR) --disable-static --build=$(MACHINE) + # build=$(MACHINE) is required : on x86_64 (64 bits), on i686 gcc pass2 fail to decompress gmp xz package with xz segfaulting + # build=$(MACHINE) trigger 'checking if libtool supports shared libraries... no' so --disable-static has no effect + cd $(DIR_APP) && ./configure --prefix=/$(TOOLS_DIR) --build=$(MACHINE) --disable-nls endif ifeq "$(STAGE)" "base" - cd $(DIR_APP) && ./configure --prefix=/usr \ - --disable-static + cd $(DIR_APP) && ./configure --prefix=/usr --disable-static --disable-nls endif cd $(DIR_APP) && make -j $(PARALLELISM) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Ipcop-svn mailing list Ipcop-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ipcop-svn