Revision: 6522 http://ipcop.svn.sourceforge.net/ipcop/?rev=6522&view=rev Author: gespinasse Date: 2012-04-01 15:30:20 +0000 (Sun, 01 Apr 2012) Log Message: ----------- On Ubuntu lucid, I had the surprise to find toolchain bash version to be 4.2.9 even with toolchain just rebuild Should be bash-4.1.5 the guilty but or host make-3.81. This was working on debian bash-3.2.39. Write that another way and display patch file name.
Modified Paths: -------------- ipcop/trunk/lfs/bash Modified: ipcop/trunk/lfs/bash =================================================================== --- ipcop/trunk/lfs/bash 2012-04-01 13:45:27 UTC (rev 6521) +++ ipcop/trunk/lfs/bash 2012-04-01 15:30:20 UTC (rev 6522) @@ -157,7 +157,8 @@ cd $(DIR_APP) && patch -p1 -i $(DIR_DL)/$(PATCH1) cd $(DIR_APP) && patch -p0 -i $(DIR_DL)/$(PATCH08).patch cd $(DIR_APP) && patch -p0 -i $(DIR_DL)/$(PATCH09).patch - cd $(DIR_APP) && for patch in $(seq 10 24); do patch -p0 -i $(DIR_DL)/$(PATCH$$patch).patch; done + # Ubuntu lucid bash version 4.1.5(1) do nothing with '$(seq 10 24)' and doesn't like the variable evaluation + cd $(DIR_APP) && for nb in `seq 10 24`; do patch="$(DIR_DL)/$(PKG_NAME)42-0$$nb.patch";echo "using $$patch"; patch -p0 -i $$patch; done # Fix not a string literal and no format arguments, debian borrowed cd $(DIR_APP) && patch -p2 -i $(DIR_PATCHES)/$(PKG_NAME)-4.1_hardening-formatstring.patch This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ Ipcop-svn mailing list Ipcop-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ipcop-svn