1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Fix a bug in detecting USE_GNOME components properly.

This commit is contained in:
Joe Marcus Clarke 2003-04-04 09:33:10 +00:00
parent 67ede1bc58
commit 57109ef648
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=78153

View File

@ -486,7 +486,8 @@ _USE_GNOME+= ${${component}_USE_GNOME_IMPL} ${component}
# Then traverse through all components, check which of them
# exist in ${_USE_GNOME} and set variables accordingly
. for component in ${_USE_GNOME_ALL}
. if ${_USE_GNOME:M${component}}==${component}
_COMP_TEST= ${_USE_GNOME:M${component}}
. if ${_COMP_TEST:S/${component}//}!=${_COMP_TEST:S/ / /g}
BUILD_DEPENDS+= ${${component}_BUILD_DEPENDS}
LIB_DEPENDS+= ${${component}_LIB_DEPENDS}
RUN_DEPENDS+= ${${component}_RUN_DEPENDS}