From 3f1309df1b9a96a194845b297734f55db3f2c6b0 Mon Sep 17 00:00:00 2001
From: Damjan Marion <damarion@cisco.com>
Date: Fri, 13 Jan 2017 20:58:19 +0100
Subject: Fix remove-rpath script

Change-Id: Ieb9ca2c5ac64dbb73de1b3dd701bb794c91aeae5
Signed-off-by: Damjan Marion <damarion@cisco.com>
---
 build-root/scripts/remove-rpath | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'build-root/scripts/remove-rpath')

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
 
-- 
cgit