get rid of the additional scripts dir in pythonpath
This commit is contained in:
parent
e64a17d1ba
commit
117851a94a
4 changed files with 5 additions and 6 deletions
|
|
@ -30,7 +30,6 @@
|
||||||
|
|
||||||
#-----------------------------------Configuration
|
#-----------------------------------Configuration
|
||||||
TOOLDIR = './admin/scons' # SCons plugins
|
TOOLDIR = './admin/scons' # SCons plugins
|
||||||
SCRIPTDIR = './admin'
|
|
||||||
#-----------------------------------Configuration
|
#-----------------------------------Configuration
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
#
|
#
|
||||||
# render_icons.py - Icon rendering utility script
|
# IconSvgRenderer.py - Icon rendering utility script
|
||||||
#
|
#
|
||||||
# Copyright (C) Lumiera.org
|
# Copyright (C) Lumiera.org
|
||||||
# 2008, Joel Holdsworth <joel@airwebreathe.org.uk>
|
# 2008, Joel Holdsworth <joel@airwebreathe.org.uk>
|
||||||
|
|
@ -19,11 +19,12 @@
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
import os
|
||||||
import sys
|
import sys
|
||||||
import getopt
|
import getopt
|
||||||
from xml.dom import minidom
|
|
||||||
import os
|
|
||||||
import shutil
|
import shutil
|
||||||
|
from xml.dom import minidom
|
||||||
|
|
||||||
|
|
||||||
#svgDir = "svg"
|
#svgDir = "svg"
|
||||||
#prerenderedDir = "prerendered"
|
#prerenderedDir = "prerendered"
|
||||||
|
|
@ -123,7 +123,7 @@ def register_LumieraResourceBuilder(env):
|
||||||
used to generate png from the svg source using librsvg.
|
used to generate png from the svg source using librsvg.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import render_icon as renderer # load Joel's python script for invoking the rsvg-convert (SVG render)
|
import IconSvgRenderer as renderer # load Joel's python script for invoking the rsvg-convert (SVG render)
|
||||||
renderer.rsvgPath = env.subst("$TARGDIR/rsvg-convert")
|
renderer.rsvgPath = env.subst("$TARGDIR/rsvg-convert")
|
||||||
|
|
||||||
def invokeRenderer(target, source, env):
|
def invokeRenderer(target, source, env):
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@
|
||||||
TARGDIR = 'target'
|
TARGDIR = 'target'
|
||||||
VERSION = '0.pre.01'
|
VERSION = '0.pre.01'
|
||||||
TOOLDIR = './admin/scons' # SCons plugins
|
TOOLDIR = './admin/scons' # SCons plugins
|
||||||
SCRIPTDIR = './admin'
|
|
||||||
OPTCACHE = 'optcache'
|
OPTCACHE = 'optcache'
|
||||||
CUSTOPTFILE = 'custom-options'
|
CUSTOPTFILE = 'custom-options'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue