2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

fixed spelling error by moving to utility.jam

[SVN r12172]
This commit is contained in:
Dave Abrahams
2001-12-29 00:02:57 +00:00
parent f2e9623cb7
commit eaf16ea31a
2 changed files with 0 additions and 54 deletions

View File

@@ -1,27 +0,0 @@
# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and
# distribute this software is granted provided this copyright notice appears in
# all copies. This software is provided "as is" without express or implied
# warranty, and with no claim as to its suitability for any purpose.
rule ungrist ( names * )
{
local result ;
for local name in $(names)
{
local stripped = [ SUBST $(name) ^<(.*)>$ $1 ] ;
if ! $(stripped)
{
ECHO *** error: in ungrist $(names) ;
EXIT *** $(name) is not of the form <.*> ;
}
result += $(stripped) ;
}
return $(result) ;
}
rule __test__
{
import assert ;
assert.result foo bar : ungrist <foo> <bar> ;
}

View File

@@ -1,27 +0,0 @@
# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and
# distribute this software is granted provided this copyright notice appears in
# all copies. This software is provided "as is" without express or implied
# warranty, and with no claim as to its suitability for any purpose.
rule ungrist ( names * )
{
local result ;
for local name in $(names)
{
local stripped = [ SUBST $(name) ^<(.*)>$ $1 ] ;
if ! $(stripped)
{
ECHO *** error: in ungrist $(names) ;
EXIT *** $(name) is not of the form <.*> ;
}
result += $(stripped) ;
}
return $(result) ;
}
rule __test__
{
import assert ;
assert.result foo bar : ungrist <foo> <bar> ;
}