@@ -63,7 +63,7 @@ def amalgamate_source(source_top_dir=None,
63
63
"""
64
64
print ("Amalgamating header..." )
65
65
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 /)." )
67
67
header .add_text ('/// It is intended to be used with #include "%s"' % header_include_path )
68
68
header .add_file ("LICENSE" , wrap_in_comment = True )
69
69
header .add_text ("#ifndef JSON_AMALGAMATED_H_INCLUDED" )
@@ -90,7 +90,7 @@ def amalgamate_source(source_top_dir=None,
90
90
forward_header_include_path = base + "-forwards" + ext
91
91
print ("Amalgamating forward header..." )
92
92
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 /)." )
94
94
header .add_text ('/// It is intended to be used with #include "%s"' % forward_header_include_path )
95
95
header .add_text ("/// This header provides forward declaration for all JsonCpp types." )
96
96
header .add_file ("LICENSE" , wrap_in_comment = True )
@@ -112,7 +112,7 @@ def amalgamate_source(source_top_dir=None,
112
112
113
113
print ("Amalgamating source..." )
114
114
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 /)." )
116
116
source .add_text ('/// It is intended to be used with #include "%s"' % header_include_path )
117
117
source .add_file ("LICENSE" , wrap_in_comment = True )
118
118
source .add_text ("" )
0 commit comments