diff options
author | zeising <zeising@058c260c-8361-11dd-a0ac-aa2bafec7d09> | 2013-04-01 00:40:27 +0800 |
---|---|---|
committer | zeising <zeising@058c260c-8361-11dd-a0ac-aa2bafec7d09> | 2013-04-01 00:40:27 +0800 |
commit | a12f0ca5a0a8eb273ef5875b96dd67a230de205c (patch) | |
tree | 6e2131810edf0df3769105862123c5f2795c955f | |
parent | 558147625ce917e2ff53f717a7fe9c331f87d493 (diff) | |
download | xorg-devel-ports-a12f0ca5a0a8eb273ef5875b96dd67a230de205c.tar.gz xorg-devel-ports-a12f0ca5a0a8eb273ef5875b96dd67a230de205c.tar.zst xorg-devel-ports-a12f0ca5a0a8eb273ef5875b96dd67a230de205c.zip |
Merge r780 by eadler:
Fix infinite loop in bmake.
git-svn-id: https://trillian.chruetertee.ch/svn/ports/branches/xorg-7.7@782 058c260c-8361-11dd-a0ac-aa2bafec7d09
-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 27eda4f..16227c6 100644 --- a/x11/xorg-apps/Makefile +++ b/x11/xorg-apps/Makefile @@ -39,7 +39,7 @@ ${comp:C/:.*//:C/.*\///:U}_DESC= Install ${comp:C/:.*//:C/.*\///} application .for comp in ${COMPONENTS} . if !defined(${OPTIONS_UNSET:M${comp:C/:.*//:C/.*\///:U}}) -. if ${comp:M:}=="" +. if ${comp:M*\:*}=="" port=${comp} check=${comp:C/.*\///} # doesn't work . else |