We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25a6bb6 commit 9aca7f5Copy full SHA for 9aca7f5
check/predef.jam
@@ -3,8 +3,16 @@
3
# (See accompanying file LICENSE_1_0.txt or copy at
4
# http://www.boost.org/LICENSE_1_0.txt)
5
6
+ECHO "error: This module (predef/check/predef.jam) is OBSOLETE. Use predef/tools/check/predef.jam instead." ;
7
+
8
# Hack, to reload check/predef.jam at its new location.
9
import modules ;
10
+local _loading_ = [ modules.peek modules : .loading ] ;
11
+if $(_loading_[-1]) = $(_loading_[-2])
12
+{
13
+ ECHO "error: Recursive loading of this module (predef/check/predef.jam) attempted. The predef/tools/check/predef.jam file is missing." ;
14
+ EXIT ;
15
+}
16
local _loaded_ ;
17
for local _module_ in [ modules.peek modules : .loaded ]
18
{
0 commit comments