Juanito
I hope you don't mind me posting here as Original Poster seems happy.
my build scripts have lacked --disable-static so I will attend to that shortly.
Here is a snippet I have been using for some time, P is the name of submission TCZ before splitting out the doc, dev, locale and any other TCZs
cd /tmp/$P
find . | xargs file | grep "executable" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
cd /tmp
How exactly do I use the strip --strip-debug in the above formula please?
cheers