Ignore:
Timestamp:
08/06/09 06:28:35 (3 years ago)
Author:
marc
Message:

Improved makefile to work with prefixes, fixed errors, improved manpag and readme, and fix a configuration error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/release/0.2/config.py

    r295 r317  
    5151image_dir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "share/images/") 
    5252#: To be changed on install to specify where the installed files actually are 
    53 prefix = "/usr/share/itaka/images" 
     53prefix = "/usr/local/share/itaka/images/" 
    5454if os.path.exists(prefix): 
    5555    image_dir = prefix 
     
    6161 
    6262#: Save path for screenshots (system-specific specified later on) 
    63 save_path = os.getcwd() 
     63try: 
     64    save_path = os.getcwd() 
     65except: 
     66    print "[*] WARNING: Could not get current directory" 
    6467 
    6568if os.environ.get('HOME'): 
Note: See TracChangeset for help on using the changeset viewer.