summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/predef/check/predef.jam
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/predef/check/predef.jam')
-rw-r--r--src/boost/libs/predef/check/predef.jam17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/boost/libs/predef/check/predef.jam b/src/boost/libs/predef/check/predef.jam
new file mode 100644
index 000000000..7042dc1d4
--- /dev/null
+++ b/src/boost/libs/predef/check/predef.jam
@@ -0,0 +1,17 @@
+# Copyright Rene Rivera 2016
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
+# Hack, to reload check/predef.jam at its new location.
+import modules ;
+local _loaded_ ;
+for local _module_ in [ modules.peek modules : .loaded ]
+{
+ if $(_module_) != "predef"
+ {
+ _loaded_ += $(_module_) ;
+ }
+}
+modules.poke modules : .loaded : $(_loaded_) ;
+import ../tools/check/predef ;