From: Damjan Marion Date: Fri, 13 Jan 2017 19:58:19 +0000 (+0100) Subject: Fix remove-rpath script X-Git-Tag: v17.04-rc1~373 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=3f1309df1b9a96a194845b297734f55db3f2c6b0;p=vpp.git Fix remove-rpath script Change-Id: Ieb9ca2c5ac64dbb73de1b3dd701bb794c91aeae5 Signed-off-by: Damjan Marion --- diff --git a/build-root/scripts/remove-rpath b/build-root/scripts/remove-rpath index bda3d60d745..1828ddf9cfa 100755 --- a/build-root/scripts/remove-rpath +++ b/build-root/scripts/remove-rpath @@ -18,7 +18,7 @@ execs=$(find $1 -type f -path \*/bin/\* ) for i in $libs $execs; do chrpath $i 2> /dev/null | grep -q build-root if [ $? -eq 0 ] ; then - chrpath $i + chrpath -d $i fi done