mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Fix sed command in proxydeps_suggest_uses qa.sh check
It led to incorrect "you need USE_XORG+" suggestion Submitted by: amdmi3 Approved by: portmgr (bapt) Differential Revision: D6618
This commit is contained in:
parent
cfc2570e0d
commit
79302ffde3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=416052
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ proxydeps_suggest_uses() {
|
|||
warn "you need USE_GL+=glut"
|
||||
# Xorg-libraries: this should be by XORG_MODULES @ bsd.xorg.mk
|
||||
elif echo ${pkg} | grep -E '/lib(X11|Xau|Xdmcp|Xext|SM|ICE|Xfixes|Xft|Xdamage|Xcomposite|Xcursor|Xinerama|Xmu|Xmuu|Xpm|Xt|Xtst|Xi|Xrandr|Xrender|Xres|XScrnSaver|Xv|Xxf86vm|Xxf86dga|Xxf86misc|xcb)$' > /dev/null; then
|
||||
warn "you need USE_XORG+=$(echo ${pkg} | sed -E 's|.*/lib//' | tr '[:upper:]' '[:lower:]')"
|
||||
warn "you need USE_XORG+=$(echo ${pkg} | sed -E 's|.*/lib||' | tr '[:upper:]' '[:lower:]')"
|
||||
elif [ ${pkg} = 'x11/pixman' ]; then
|
||||
warn "you need USE_XORG+=pixman"
|
||||
# Qt4
|
||||
|
|
Loading…
Add table
Reference in a new issue