diff options
Diffstat (limited to 'hstcal')
-rw-r--r-- | hstcal/hstcal.ini | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/hstcal/hstcal.ini b/hstcal/hstcal.ini index a6d1232..2cdb83f 100644 --- a/hstcal/hstcal.ini +++ b/hstcal/hstcal.ini @@ -30,9 +30,15 @@ commands : [cbc_build] linux : - ./configure --destdir=$$PREFIX - make - ./waf install + # If you find yourself here wondering why your HSTCAL will not build from source + # ... you're not alone. + # Make sure your system Python is <= 2.6. + # WAF 1.6.4 is the mortal enemy of Python >= 2.7 + # -- This should be fixed some day. + + /usr/bin/python ./waf configure --destdir=$$PREFIX + /usr/bin/python ./waf build + /usr/bin/python ./waf install windows : echo Not yet. |