41
edits
Changes
From Gramps
no edit summary
A small number of changes are needed prior to compiling and installing GRAMPS 3.0.1 on the Solaris platform
=====Modify gramps.sh.in=====
By default /bin/sh under Solaris is bourne shell, in order to allow the script to work we need to modify the first line of this file from sh to ksh (or bash if you prefer):
#! /bin/sh
to:
#!/bin/ksh
=====src/gen/db/base.py=====
change line 39 from:
from bsddb import db
to:
from bsddb3 import db