K 10
svn:author
V 6
bostic
K 8
svn:date
V 27
1994-01-02T13:12:24.000000Z
K 24
svn:entry:committed-date
V 27
1994-01-02T13:12:24.000000Z
K 7
svn:log
V 458
Serious quoteing problem in conditionals:
% cat Makefile
V1=foo
V2=bar
all:
.if (${V1} != ${V2})
        echo "Not equal"
.else
        echo "Equal"
.endif
% make
"Makefile", line 5: Malformed conditional ((${V1} != ${V2}))
"Makefile", line 5: Missing dependency operator
"Makefile", line 7: if-less else
"Makefile", line 7: Need an operator
"Makefile", line 9: if-less endif
"Makefile", line 9: Need an operator
From: christos@deshaw.com (Christos Zoulas)


END
