aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xupdate.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/update.sh b/update.sh
index a28fe2c..5444d54 100755
--- a/update.sh
+++ b/update.sh
@@ -399,10 +399,10 @@ apps_excludes=(
399 BASE=`echo $i|sed -e "s/\.pod//"` 399 BASE=`echo $i|sed -e "s/\.pod//"`
400 NAME=`basename "$BASE"` 400 NAME=`basename "$BASE"`
401 # reformat file if new 401 # reformat file if new
402 if [ ! -f $NAME.3 -o $BASE.pod -nt $NAME.3 -o ../VERSION -nt $NAME.3 ]; then 402 if [ ! -f $NAME.$2 -o $BASE.pod -nt $NAME.$2 -o ../VERSION -nt $NAME.$2 ]; then
403 echo processing $NAME 403 echo processing $NAME
404 pod2man --official --release="LibreSSL $VERSION" --center=LibreSSL \ 404 pod2man --official --release="LibreSSL $VERSION" --center=LibreSSL \
405 --section=3 $POD2MAN --name=$NAME < $BASE.pod > $NAME.3 405 --section=$2 $POD2MAN --name=$NAME < $BASE.pod > $NAME.$2
406 fi 406 fi
407 echo "dist_man_MANS += $NAME.$2" >> Makefile.am 407 echo "dist_man_MANS += $NAME.$2" >> Makefile.am
408 done 408 done