mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
fix a braino in the QF_WITH_TARGETS macro
This commit is contained in:
parent
5189ffeae9
commit
576fc27749
1 changed files with 1 additions and 1 deletions
|
@ -1147,7 +1147,7 @@ if test "x${$1}" = "xall"; then
|
|||
done
|
||||
else
|
||||
for qf_t in `echo '$3' | sed -e "s/,/ /g"`''; do
|
||||
if echo ",${clients}," | grep ",$qf_t," > /dev/null; then
|
||||
if echo ",${$1}," | grep ",$qf_t," > /dev/null; then
|
||||
eval ENABLE_$1_${qf_t}=yes
|
||||
else
|
||||
eval ENABLE_$1_${qf_t}=no
|
||||
|
|
Loading…
Reference in a new issue