From 55d15b16fdeebcecb8279f154b4dff764b2c71ea Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 9 Oct 2018 09:21:09 -0400 Subject: [PATCH] Patch from @marcespie: no need for bash, don't gzip. --- CMake/allexec2man.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMake/allexec2man.sh b/CMake/allexec2man.sh index 1d4722f750..489bb2f58a 100755 --- a/CMake/allexec2man.sh +++ b/CMake/allexec2man.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e @@ -23,5 +23,4 @@ for program in $(find . -type f -executable -iname 'mlpack_*' | \ grep -v '_test$'); do echo "Generating man page for $program..."; "$exec2man" "$program" "$outdir/$program.1" - gzip -f "$outdir/$program.1" done