From 6c4136923e50002d7e09fcd6b7f66995097ecc00 Mon Sep 17 00:00:00 2001
From: Boris Yumankulov <boria138@altlinux.org>
Date: Tue, 20 Aug 2024 19:40:47 +0500
Subject: [PATCH] added requires bit to __get_binary_requires

---
 repack.d/common.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/repack.d/common.sh b/repack.d/common.sh
index 02d8b73e..e96b5ec4 100755
--- a/repack.d/common.sh
+++ b/repack.d/common.sh
@@ -402,10 +402,10 @@ __get_binary_requires()
     local fdir="$1"
 
     info "  Getting executable requires ..."
-    epm req --short $(find "$fdir" -type f -executable) </dev/null 2>/dev/null | sed -e 's|().*||'
+    epm req --short $(find "$fdir" -type f -executable) </dev/null 2>/dev/null
 
     info "  Getting libs requires ..."
-    epm req --short $(find "$fdir" -type f -name "lib*.so*") </dev/null 2>/dev/null | sed -e 's|().*||'
+    epm req --short $(find "$fdir" -type f -name "lib*.so*") </dev/null 2>/dev/null
 }
 
 __get_library_provides()
-- 
2.24.1