project-navigation
Personal tools

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - EsdiDude

Pages: [1]
1
I had the same problem, I posted a small workaround in a different thread. Please see
http://ufoai.ninex.info/forum/index.php?topic=5037.0

It's funny though, as argument list limits should have been a thing of the past. Anyway.

cheers,


EsdiDude

2
Linux / Re: make pk3 Error Message
« on: August 04, 2010, 12:43:43 pm »
Hello,

It looks like it's trying to parse the entire argument list. Quite sure that that's a "glitch" in the makefile, though I have to admit that I don't really understand the makefile logic used. I expected a list iteration, but it looks like a completely expanded list is passed, which is then too large (over 5081 arguments at least).
A simple fix is to 'touch base/0pics.pk3' which will cause the makefile to skip the file during make. Afterwards you can manually execute
rm base/0pics.pk3
find base/pics base/materials -iname "*.tga" -o -iname "*.png" -o -iname "*.jpg" -print0 | xargs -0 -I{} zip -u9 base/0pics.pk3 {}
to recreate the pk3 file.

Cheers,

EsdiDude

Pages: [1]