Browse Source

Added comments on how to use static cache when developing

Hamilton Turner 11 years ago
parent
commit
b4ee43c6b4
1 changed files with 6 additions and 3 deletions
  1. 6 3
      toolset/setup/linux/bash_functions.sh

+ 6 - 3
toolset/setup/linux/bash_functions.sh

@@ -1,8 +1,11 @@
 #!/bin/sh
 #!/bin/sh
 
 
-# Setting this variable will cause apt-get and wget to 
-# your proxy server. Yay!
-export http_proxy=http://10.0.1.0:3128
+# If you are running a large number of installs back to back 
+# (e.g. for FwBm development), then setting this variable 
+# will cause apt-get and wget to use your proxy server. If 
+# your proxy server has a cache for static content, this can 
+# save you quite a lot of download time
+# export http_proxy=http://10.0.1.0:3128
 
 
 fw_get () {
 fw_get () {
   wget --no-check-certificate --trust-server-names "$@"
   wget --no-check-certificate --trust-server-names "$@"