Re: [fpc-devel] order of tar parameters during make zipinstall

2010-05-17 Thread Joost van der Sluis
On Sat, 2010-05-15 at 22:35 +0200, Den Jean wrote: Hi, make zipinstall does not work for my busybox tar the call to tar is made like this: /bin/tar cfvz /svn/fpc/fpc-2.5.1.arm-linux.tar.gz * but my system tar wants the option 'f' right in front of the target filename. Makefile

Re: [fpc-devel] order of tar parameters during make zipinstall

2010-05-17 Thread Den Jean
On Saturday 15 May 2010 22:35:23 Den Jean wrote: If someone agrees to fix this, I'll make a bug report done http://bugs.freepascal.org/view.php?id=16504 including patch proposal ___ fpc-devel maillist - fpc-devel@lists.freepascal.org

[fpc-devel] order of tar parameters during make zipinstall

2010-05-15 Thread Den Jean
Hi, make zipinstall does not work for my busybox tar the call to tar is made like this: /bin/tar cfvz /svn/fpc/fpc-2.5.1.arm-linux.tar.gz * but my system tar wants the option 'f' right in front of the target filename. Makefile contains: ZIPCMD_ZIP:=$(TARPROG) cf$(TAROPT) $(ZIPDESTFILE) *