* configure.ac:

* morituri/configure/installed.py.in:
	* morituri/configure/uninstalled.py.in:
	  Create configure.configure.pluginsdir
This commit is contained in:
Thomas Vander Stichele
2012-11-25 18:21:11 +00:00
parent d1b1f1a7d0
commit cd295537fc
4 changed files with 17 additions and 0 deletions

View File

@@ -5,5 +5,6 @@
def get():
return {
'isinstalled': True,
'pluginsdir': '@PLUGINSDIR@',
'version': '@VERSION@',
}

View File

@@ -1,9 +1,15 @@
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4
import os
__thisdir = os.path.dirname(os.path.abspath(__file__))
def get():
return {
'isinstalled': False,
'pluginsdir': os.path.abspath(os.path.join(
__thisdir, '..', '..', 'plugins')),
'version': '@VERSION@',
}