This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGd945b6496ec6: [clang] Make make_cxx_dr_status script runnable from anywhere (authored by Endill).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D148146/new/ https://reviews.llvm.org/D148146 Files: clang/www/make_cxx_dr_status Index: clang/www/make_cxx_dr_status =================================================================== --- clang/www/make_cxx_dr_status +++ clang/www/make_cxx_dr_status @@ -2,10 +2,11 @@ import sys, os, re, urllib.request -default_issue_list_path = 'cwg_index.html' +clang_www_dir = os.path.dirname(__file__) +default_issue_list_path = os.path.join(clang_www_dir, 'cwg_index.html') issue_list_url = "https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_index.html" -output = 'cxx_dr_status.html' -dr_test_dir = '../test/CXX/drs' +output = os.path.join(clang_www_dir, 'cxx_dr_status.html') +dr_test_dir = os.path.join(clang_www_dir, '../test/CXX/drs') class DR: def __init__(self, section, issue, url, status, title):
Index: clang/www/make_cxx_dr_status =================================================================== --- clang/www/make_cxx_dr_status +++ clang/www/make_cxx_dr_status @@ -2,10 +2,11 @@ import sys, os, re, urllib.request -default_issue_list_path = 'cwg_index.html' +clang_www_dir = os.path.dirname(__file__) +default_issue_list_path = os.path.join(clang_www_dir, 'cwg_index.html') issue_list_url = "https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_index.html" -output = 'cxx_dr_status.html' -dr_test_dir = '../test/CXX/drs' +output = os.path.join(clang_www_dir, 'cxx_dr_status.html') +dr_test_dir = os.path.join(clang_www_dir, '../test/CXX/drs') class DR: def __init__(self, section, issue, url, status, title):
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits