diff options
Diffstat (limited to 'Mk/Scripts')
| -rw-r--r-- | Mk/Scripts/qa.sh | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index 5a46b4c261ea..3462295ee290 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -134,6 +134,9 @@ symlinks() {  				err "Bad symlink '${l#${STAGEDIR}${PREFIX}/}' pointing inside the stage directory"  				rc=1  				;; +			/*) +				warn "Bad symlink '${l#${STAGEDIR}}' pointing to an absolute pathname '${link}'" +				;;  		esac  	# Use heredoc to avoid losing rc from find|while subshell.  	done <<-EOF @@ -607,7 +610,9 @@ proxydeps() {  	return ${rc}  } -checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles libtool libperl prefixvar baselibs terminfo proxydeps" +checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo" +checks="$checks suidfiles libtool libperl prefixvar baselibs terminfo" +checks="$checks proxydeps"  ret=0  cd ${STAGEDIR} | 
