Unbreak " lib a ; " syntax.
Thanks to Craig Rodrigues for the bug report. [SVN r30309]
This commit is contained in:
parent
a02448da4a
commit
24fa408e3f
@ -380,11 +380,13 @@ rule lib ( names + : sources * : requirements * : default-build *
|
||||
"it's not allowed to specify sources. " ;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
for local name in $(names)
|
||||
{
|
||||
local r = $(requirements) ;
|
||||
if $(names[2])
|
||||
# Support " lib a ; " and " lib a b c ; " syntaxes.
|
||||
if ! $(sources) && ! <name> in $(requirements:G)
|
||||
&& ! <file> in $(requirements:G)
|
||||
{
|
||||
r += <name>$(name) ;
|
||||
}
|
||||
|
@ -140,4 +140,22 @@ lib l : : <name>l_f ;
|
||||
|
||||
t.run_build_system("-n")
|
||||
|
||||
|
||||
# Make sure that plain "lib foobar ; " works.
|
||||
t.write("Jamfile", """
|
||||
exe a : a.cpp foobar ;
|
||||
lib foobar ;
|
||||
""")
|
||||
t.run_build_system("-n -d2")
|
||||
t.fail_test(string.find(t.stdout(), "foobar") == -1)
|
||||
|
||||
# Make sure that plain "lib foo bar ; " works.
|
||||
t.write("Jamfile", """
|
||||
exe a : a.cpp foo bar ;
|
||||
lib foo bar ;
|
||||
""")
|
||||
t.run_build_system("-n -d2")
|
||||
t.fail_test(string.find(t.stdout(), "foo") == -1)
|
||||
t.fail_test(string.find(t.stdout(), "bar") == -1)
|
||||
|
||||
t.cleanup()
|
||||
|
Loading…
Reference in New Issue
Block a user