Wrap up the call to 'make --version', the code to process its output,
and the resulting formatted output in awk functions.

Signed-off-by: Alexander Kapshuk <alexander.kaps...@gmail.com>
---
 scripts/ver_linux | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/scripts/ver_linux b/scripts/ver_linux
index 9362782..3042291 100755
--- a/scripts/ver_linux
+++ b/scripts/ver_linux
@@ -13,13 +13,7 @@ BEGIN {
        printf("\n")
 
        printversion("GNU C", version("gcc -dumpversion 2>&1"))
-
-make --version 2>&1 |
-awk '/GNU Make/{
-       match($0, /[0-9]+([.]?[0-9]+)+/)
-       printf("GNU Make\t\t%s\n",
-       substr($0,RSTART,RLENGTH))
-}'
+       printversion("GNU Make", version("make --version 2>&1"))
 
 ld -v 2>&1 |
 awk '/[0-9]+([.]?[0-9]+)+/ && !/not found$/{
-- 
2.7.3

Reply via email to