Missed one handling case

This commit is contained in:
Ryan Curtin
2012-08-11 00:15:04 +00:00
parent ed9501d954
commit 91fa2beba0
+1 -1
View File
@@ -17,6 +17,6 @@ for program in `find . -perm /u=x,g=x,o=x | \
grep -v '_test$' | \
sed 's|^./||'`; do
echo "Generating man page for $program...";
$1 "$program" "$outdir/$program.1"
"$1" "$program" "$outdir/$program.1"
gzip -f "$outdir/$program.1"
done