Skip to content

Commit c857395

Browse files
Update link in amalgamate.py (#1335)
1 parent d39b0df commit c857395

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

amalgamate.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def amalgamate_source(source_top_dir=None,
6363
"""
6464
print("Amalgamating header...")
6565
header = AmalgamationFile(source_top_dir)
66-
header.add_text("/// Json-cpp amalgamated header (http://jsoncpp.sourceforge.net/).")
66+
header.add_text("/// Json-cpp amalgamated header (https://github.com/open-source-parsers/jsoncpp/).")
6767
header.add_text('/// It is intended to be used with #include "%s"' % header_include_path)
6868
header.add_file("LICENSE", wrap_in_comment=True)
6969
header.add_text("#ifndef JSON_AMALGAMATED_H_INCLUDED")
@@ -90,7 +90,7 @@ def amalgamate_source(source_top_dir=None,
9090
forward_header_include_path = base + "-forwards" + ext
9191
print("Amalgamating forward header...")
9292
header = AmalgamationFile(source_top_dir)
93-
header.add_text("/// Json-cpp amalgamated forward header (http://jsoncpp.sourceforge.net/).")
93+
header.add_text("/// Json-cpp amalgamated forward header (https://github.com/open-source-parsers/jsoncpp/).")
9494
header.add_text('/// It is intended to be used with #include "%s"' % forward_header_include_path)
9595
header.add_text("/// This header provides forward declaration for all JsonCpp types.")
9696
header.add_file("LICENSE", wrap_in_comment=True)
@@ -112,7 +112,7 @@ def amalgamate_source(source_top_dir=None,
112112

113113
print("Amalgamating source...")
114114
source = AmalgamationFile(source_top_dir)
115-
source.add_text("/// Json-cpp amalgamated source (http://jsoncpp.sourceforge.net/).")
115+
source.add_text("/// Json-cpp amalgamated source (https://github.com/open-source-parsers/jsoncpp/).")
116116
source.add_text('/// It is intended to be used with #include "%s"' % header_include_path)
117117
source.add_file("LICENSE", wrap_in_comment=True)
118118
source.add_text("")

0 commit comments

Comments
 (0)