diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/tools/build/test/rootless | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/tools/build/test/rootless')
7 files changed, 58 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/rootless/test1/sub_root/a.cpp b/src/boost/tools/build/test/rootless/test1/sub_root/a.cpp new file mode 100644 index 00000000..412a2bb4 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test1/sub_root/a.cpp @@ -0,0 +1,6 @@ +// Copyright 2018 Rene Rivera +// 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) + +int main() {} diff --git a/src/boost/tools/build/test/rootless/test1/sub_root/jamfile.jam b/src/boost/tools/build/test/rootless/test1/sub_root/jamfile.jam new file mode 100644 index 00000000..0a17bc40 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test1/sub_root/jamfile.jam @@ -0,0 +1,10 @@ +# Copyright 2018 Rene Rivera +# 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) + +actions foo +{ + echo "$(>)" > "$(<)" +} +make a.txt : a.cpp : @foo ; diff --git a/src/boost/tools/build/test/rootless/test2/sub_root/a.cpp b/src/boost/tools/build/test/rootless/test2/sub_root/a.cpp new file mode 100644 index 00000000..412a2bb4 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test2/sub_root/a.cpp @@ -0,0 +1,6 @@ +// Copyright 2018 Rene Rivera +// 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) + +int main() {} diff --git a/src/boost/tools/build/test/rootless/test2/sub_root/jamfile.jam b/src/boost/tools/build/test/rootless/test2/sub_root/jamfile.jam new file mode 100644 index 00000000..62416c0b --- /dev/null +++ b/src/boost/tools/build/test/rootless/test2/sub_root/jamfile.jam @@ -0,0 +1,13 @@ +# Copyright 2018 Rene Rivera +# 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) + +project foo ; + +actions foo +{ + echo "$(>)" > "$(<)" +} + +make a.txt : a.cpp : @foo ; diff --git a/src/boost/tools/build/test/rootless/test3/jamfile.jam b/src/boost/tools/build/test/rootless/test3/jamfile.jam new file mode 100644 index 00000000..ab8da6a0 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test3/jamfile.jam @@ -0,0 +1,6 @@ +# Copyright 2018 Rene Rivera +# 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) + +project root-foo : build-dir bins ; diff --git a/src/boost/tools/build/test/rootless/test3/sub/inner/a.cpp b/src/boost/tools/build/test/rootless/test3/sub/inner/a.cpp new file mode 100644 index 00000000..412a2bb4 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test3/sub/inner/a.cpp @@ -0,0 +1,6 @@ +// Copyright 2018 Rene Rivera +// 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) + +int main() {} diff --git a/src/boost/tools/build/test/rootless/test3/sub/inner/jamfile.jam b/src/boost/tools/build/test/rootless/test3/sub/inner/jamfile.jam new file mode 100644 index 00000000..6aeddab3 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test3/sub/inner/jamfile.jam @@ -0,0 +1,11 @@ +# Copyright 2018 Rene Rivera +# 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) + +actions foo +{ + echo "$(>)" > "$(<)" +} + +make a.txt : a.cpp : @foo ; |