From a4f786276ab3c1c274fb3630df71d1935e32f2f8 Mon Sep 17 00:00:00 2001 From: maxice8 Date: Mon, 21 Jan 2019 00:51:21 -0200 Subject: [PATCH] shutils/show.sh: add support for showing build_helper --- common/xbps-src/shutils/show.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/xbps-src/shutils/show.sh b/common/xbps-src/shutils/show.sh index e58b805e4a7..83f15c82df9 100644 --- a/common/xbps-src/shutils/show.sh +++ b/common/xbps-src/shutils/show.sh @@ -17,6 +17,9 @@ show_pkg() { [ -n "$homepage" ] && echo "Upstream URL: $homepage" [ -n "$license" ] && echo "License(s): $license" [ -n "$build_style" ] && echo "build_style: $build_style" + for i in $build_helper; do + [ -n "$i" ] && echo "build_helper: $i" + done for i in ${configure_args}; do [ -n "$i" ] && echo "configure_args: $i" done