Description: use Debian config path 
 AUGUSTUS usually searches the value of an env variable for
 the configuration path. This patch sets a sensible default
 value so the user does not have to set it.
Author: Sascha Steinbiss <sascha@steinbiss.name>
--- a/src/properties.cc
+++ b/src/properties.cc
@@ -121,7 +121,7 @@ void Properties::init( int argc, char* a
         if (dir) {
             configPath = string(dir);
         } else { // third priority: relative to the path of the executable
-            configPath = findLocationOfSelfBinary();
+            configPath = string("/usr/share/augustus/config");
         }
     }
     if (configPath[configPath.size()-1] != '/') {
