From 59eea0eb39136977f71824be93d4e3c608531dbc Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 29 Dec 2001 00:02:57 +0000 Subject: [PATCH] fixed spelling error by moving to utility.jam [SVN r12172] --- ultility.jam | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 ultility.jam diff --git a/ultility.jam b/ultility.jam deleted file mode 100644 index 1764055b4..000000000 --- a/ultility.jam +++ /dev/null @@ -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 ; -} -