diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/makepkg.sh.in | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index ff1ddf8a..881b6f5e 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -995,10 +995,8 @@ tidy_install() {  					# find hard links and remove them  					#   the '|| true' part keeps the script from bailing if find returned an  					#   error, such as when one of the man directories doesn't exist -					hardlinks="$(find ${MAN_DIRS[@]} \! -name "$file" -samefile "$manpage" 2>/dev/null)" || true -					for hl in ${hardlinks}; do -						rm -f "${hl}"; -					done +					find "${MAN_DIRS[@]}" \! -name "$file" -samefile "$manpage" \ +						-exec rm -f {} \; 2>/dev/null || true  					# compress the original  					gzip -9 "$manpage"  					# recreate hard links removed earlier | 
