diff options
author | Willy Tarreau <w@1wt.eu> | 2006-07-16 14:53:14 +0200 |
---|---|---|
committer | Willy Tarreau <willy@wtap.(none)> | 2006-07-26 10:48:51 +0200 |
commit | 7ede59a9c608dd0e8b2d3ff3096f6bbb6be3edbb (patch) | |
tree | a3531d72e958b3c6a0f63319fc0d3d812a58b484 | |
parent | [RELEASE] flxutils-0.1.6 (diff) | |
download | flxutils-7ede59a9c608dd0e8b2d3ff3096f6bbb6be3edbb.tar.xz |
[RELEASE] flxutils-0.1.7v0.1.7
-rwxr-xr-x | scripts/pkg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/pkg b/scripts/pkg index be391be..950c41c 100755 --- a/scripts/pkg +++ b/scripts/pkg @@ -1,6 +1,6 @@ #!/bin/bash # -# /usr/sbin/pkg - Formilux source package manager - version 0.2.0 - 2003-02-09 +# /usr/sbin/pkg - Formilux source package manager - version 0.2.1 - 2003-02-11 # # Copyright (C) 2001-2003 Benoit Dolez & Willy Tarreau # mailto: benoit@ant-computing.com,willy@ant-computing.com @@ -305,6 +305,7 @@ function do_strip { #find $ROOTDIR/. -type f | xargs file | grep ":.*executable.*not stripped" | cut -f1 -d: | xargs strip -x --strip-unneeded -R .note -R .comment > /dev/null 2>&1 # allow executable and shared (.so), but not relocatable (.o), both stripped or not stripped find $ROOTDIR/. -type f | xargs file | grep ":.*ELF.*\(executable\|\shared\).*stripped" | cut -f1 -d: | xargs strip -x --strip-unneeded -R .note -R .comment > /dev/null 2>&1 + return 0 } function pre_pack { |