diff options
| -rw-r--r-- | scripts/makepkg.sh.in | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index b3a0200a..5fdd4b27 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -719,6 +719,10 @@ tidy_install() {  	if [ "$(check_option zipman)" = "y" ]; then  		msg2 "$(gettext "Compressing man and info pages...")"  		local manpage ext file link hardlinks hl +		if [ -z "${MAN_DIRS[*]}" ]; then +			# fall back to default value +			MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info}) +		fi  		find ${MAN_DIRS[@]} -type f 2>/dev/null |  		while read manpage ; do  			# check file still exists (potentially compressed with hard link) | 
