Notes |
(0002396)
jacmet
05-23-07 08:27
|
Why is this needed? The ncftp makefile alreay strips the executables as part of the build.
E.G.
file bin/ncftp
bin/ncftp: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.0, dynamically linked (uses shared libs), for GNU/Linux 2.6.0, stripped |
| |
(0002397)
razzor
05-23-07 08:39
|
Ah, okay. That explains why stripping saves only 2kb :)
Guess the patch can be dropped.
# ls -l build_i686/ncftp-3.2.0/bin/ncftp build_i686/root/usr/bin/ncftp
-rwxr-xr-x 1 root root 191160 2007-05-23 15:53 build_i686/ncftp-3.2.0/bin/ncftp
-rwxr-xr-x 1 root root 189276 2007-05-23 17:53 build_i686/root/usr/bin/ncftp
# file build_i686/ncftp-3.2.0/bin/ncftp
ncftp: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), stripped
# file build_i686/root/usr/bin/ncftp
ncftp: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), stripped |
| |
(0002398)
jacmet
05-23-07 08:42
|
Ahh, the makefile doesn't pick up the right strip - Sorry about that, fix checked in as r18675 |
| |