]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/src/options/help.jam
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / src / options / help.jam
index cbd30377633e057395df4e1c788e18e6b67a8bb0..9683d1a7c6daa32346954091c58805d2392c659c 100644 (file)
@@ -1,8 +1,8 @@
-# Copyright 2003 Dave Abrahams 
-# Copyright 2003, 2006 Rene Rivera 
-# Copyright 2003, 2006 Vladimir Prus 
-# Distributed under the Boost Software License, Version 1.0. 
-# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) 
+# Copyright 2003 Dave Abrahams
+# Copyright 2003, 2006 Rene Rivera
+# Copyright 2003, 2006 Vladimir Prus
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt)
 
 # This module is the plug-in handler for the --help and --help-.*
 # command-line options
@@ -93,7 +93,7 @@ rule process (
         local option-files = [ GLOB $(plugin-dir:D=$(BOOST_BUILD_PATH)) : *.jam ] ;
         if $(option-files)
         {
-            for local file in $(option-files) 
+            for local file in $(option-files)
             {
                 do-scan $(file) : print-help-options ;
             }
@@ -127,7 +127,7 @@ rule process (
         {
             version.print ;
             ECHO ;
-            # First print documentation from the current Jamfile, if any.            
+            # First print documentation from the current Jamfile, if any.
             # FIXME: Generally, this duplication of project.jam logic is bad.
             local names = [ modules.peek project : JAMROOT ]
               [ modules.peek project : JAMFILE ] ;
@@ -136,12 +136,12 @@ rule process (
             {
                 project-file = [ path.glob-in-parents . : $(names) ] ;
             }
-            
+
             for local p in $(project-file)
             {
                 do-scan $(p) : print-help-project $(p) ;
             }
-            
+
             # Next any user-config help.
             local user-path = [ os.home-directories ] [ os.environ BOOST_BUILD_PATH ] ;
             local user-config = [ GLOB $(user-path) : user-config.jam ] ;
@@ -149,7 +149,7 @@ rule process (
             {
                 do-scan $(user-config[1]) : print-help-config user $(user-config[1]) ;
             }
-            
+
             # Next any site-config help.
             local site-config = [ GLOB $(user-path) : site-config.jam ] ;
             if $(site-config)