diff options
author | Damjan Marion <damarion@cisco.com> | 2017-01-13 22:11:56 +0100 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2017-01-13 22:11:56 +0100 |
commit | 5a3a6c09f58a28fee1a673475e1c25b3aea31f60 (patch) | |
tree | de8e716d41b779c13c650d35eac587c1c44d0c85 | |
parent | 3f1309df1b9a96a194845b297734f55db3f2c6b0 (diff) |
Fix remove-rpath script, take 2
Change-Id: If0fc5adb495b243dc9d7bfb8112ffee79ca1335e
Signed-off-by: Damjan Marion <damarion@cisco.com>
-rwxr-xr-x | build-root/scripts/remove-rpath | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-root/scripts/remove-rpath b/build-root/scripts/remove-rpath index 1828ddf9cfa..3912b370448 100755 --- a/build-root/scripts/remove-rpath +++ b/build-root/scripts/remove-rpath @@ -12,7 +12,7 @@ if [ $? -ne 0 ] ; then exit 1 fi -libs=$(find $1 -type f -name \*.so) +libs=$(find $1 -type f -name \*.so\*) execs=$(find $1 -type f -path \*/bin/\* ) for i in $libs $execs; do |