Get rid of platform assumptions

[SVN r36166]
This commit is contained in:
Aleksey Gurtovoy
2006-11-23 19:41:11 +00:00
parent f25c106dda
commit e1fc6f383b
4 changed files with 11 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004
# Copyright Aleksey Gurtovoy 2001-2006
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
@@ -16,5 +16,5 @@ import preprocess
preprocess.main(
[ "plain" ]
, "list"
, "boost\\mpl\\list\\aux_\\preprocessed"
, os.path.join( "boost", "mpl", "list", "aux_", "preprocessed" )
)

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004
# Copyright Aleksey Gurtovoy 2001-2006
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
@@ -12,9 +12,10 @@
# $Revision$
import preprocess
import os.path
preprocess.main(
[ "plain", "typeof_based", "no_ctps" ]
, "map"
, "boost\\mpl\\map\\aux_\\preprocessed"
, os.path.join( "boost", "mpl", "map", "aux_", "preprocessed" )
)

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004
# Copyright Aleksey Gurtovoy 2001-2006
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
@@ -12,9 +12,10 @@
# $Revision$
import preprocess
import os.path
preprocess.main(
[ "plain" ]
, "set"
, "boost\\mpl\\set\\aux_\\preprocessed"
, os.path.join( "boost", "mpl", "set", "aux_", "preprocessed" )
)

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004
# Copyright Aleksey Gurtovoy 2001-2006
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
@@ -12,9 +12,10 @@
# $Revision$
import preprocess
import os.path
preprocess.main(
[ "no_ctps", "plain", "typeof_based" ]
, "vector"
, "boost\\mpl\\vector\\aux_\\preprocessed"
, os.path.join( "boost", "mpl", "vector", "aux_", "preprocessed" )
)