2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Minor stylistic comment change in the Boost Build tools/common.jam script.

[SVN r47069]
This commit is contained in:
Jurko Gospodnetić
2008-07-04 06:47:03 +00:00
parent f67be1b096
commit 653dde80b2

View File

@@ -574,6 +574,8 @@ rule MkDir
{
# Cheesy gate to prevent multiple invocations on same dir.
$(<)-mkdir = true ;
# Schedule the mkdir build action.
MkDir1 $(<) ;
# Prepare a Jam 'dirs' target that can be used to make the build only
@@ -594,7 +596,7 @@ rule MkDir
}
}
if $(s) && $(s) != $(<)
if $(s) && ( $(s) != $(<) )
{
DEPENDS $(<) : $(s) ;
MkDir $(s) ;