diff options
author | bapt <bapt@FreeBSD.org> | 2013-05-03 06:10:11 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-05-03 06:10:11 +0800 |
commit | 199e43447eba1a0393512da37310930eb77114bc (patch) | |
tree | 2ef7fc024fad0503718c7acbbbb11c2ed3bbc39b /x11 | |
parent | fd93f896d5ac3d20efea11d22ba0d69d74a7d17b (diff) | |
download | freebsd-ports-gnome-199e43447eba1a0393512da37310930eb77114bc.tar.gz freebsd-ports-gnome-199e43447eba1a0393512da37310930eb77114bc.tar.zst freebsd-ports-gnome-199e43447eba1a0393512da37310930eb77114bc.zip |
Fix a bug in glob matching (spotted by bmake(1))
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xorg-apps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/xorg-apps/Makefile b/x11/xorg-apps/Makefile index a09c1f969afa..d7e84dcc4f42 100644 --- a/x11/xorg-apps/Makefile +++ b/x11/xorg-apps/Makefile @@ -42,7 +42,7 @@ ${comp:C/:.*//:C/.*\///:U}_DESC= Install ${comp:C/:.*//:C/.*\///} application .for comp in ${COMPONENTS} . if ${PORT_OPTIONS:M${comp:C/:.*//:C/.*\///:U}} -. if ${comp:M:}=="" +. if ${comp:M*\:*}=="" port=${comp} check=${comp:C/.*\///} # doesn't work . else |