diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-08-21 20:56:25 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-08-22 20:13:11 -0500 |
commit | ae1702bee5e8b3e6d4e31041b4a593826ac60484 (patch) | |
tree | 6de1242c9c265d038d91651b61d9c2c71550de7a /SConstruct | |
parent | bb1c930a418c153eac7e9e85dcab023bb723dd7e (diff) |
Replace HTTP links with HTTPS for sites with HTTPS versions
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 1ab42b6b90..0ae7442e35 100644 --- a/SConstruct +++ b/SConstruct @@ -316,10 +316,10 @@ if env_base["target"] == "debug": # will properly be rebuilt. As such, we only enable them for debug (dev) builds, not release. # To decide whether to rebuild a file, use the MD5 sum only if the timestamp has changed. - # http://scons.org/doc/production/HTML/scons-user/ch06.html#idm139837621851792 + # https://scons.org/doc/production/HTML/scons-user/ch06.html#idm139837621851792 env_base.Decider("MD5-timestamp") # Use cached implicit dependencies by default. Can be overridden by specifying `--implicit-deps-changed` in the command line. - # http://scons.org/doc/production/HTML/scons-user/ch06s04.html + # https://scons.org/doc/production/HTML/scons-user/ch06s04.html env_base.SetOption("implicit_cache", 1) if env_base["no_editor_splash"]: |