Updating icon build paths
Icon build scripts required relative paths. Updating to account for new depth.
This commit is contained in:
parent
ad77863668
commit
b6565079ee
|
@ -9,17 +9,17 @@ import os
|
|||
from shutil import copy, rmtree
|
||||
from subprocess import call
|
||||
|
||||
ICON_SOURCES = "../bitmaps_png/sources/"
|
||||
ICON_SOURCES = "../../bitmaps_png/sources/"
|
||||
|
||||
ICONS = [
|
||||
("bitmap2component", ("bitmap2component",), "../bitmap2component"),
|
||||
("cvpcb", ("cvpcb", "cvpcb_doc"), "../cvpcb"),
|
||||
("eeschema", ("eeschema", "eeschema_doc"), "../eeschema"),
|
||||
("gerbview", ("gerbview", "gerbview_doc"), "../gerbview"),
|
||||
("kicad", ("kicad", "kicad_doc"), "../kicad"),
|
||||
("pagelayout_editor", ("pl_editor", "pl_editor_doc"), "../pagelayout_editor"),
|
||||
("pcbcalculator", ("pcb_calculator",), "../pcb_calculator"),
|
||||
("pcbnew", ("pcbnew", "pcbnew_doc"), "../pcbnew")
|
||||
("bitmap2component", ("bitmap2component",), "../../bitmap2component"),
|
||||
("cvpcb", ("cvpcb", "cvpcb_doc"), "../../cvpcb"),
|
||||
("eeschema", ("eeschema", "eeschema_doc"), "../../eeschema"),
|
||||
("gerbview", ("gerbview", "gerbview_doc"), "../../gerbview"),
|
||||
("kicad", ("kicad", "kicad_doc"), "../../kicad"),
|
||||
("pagelayout_editor", ("pl_editor", "pl_editor_doc"), "../../pagelayout_editor"),
|
||||
("pcbcalculator", ("pcb_calculator",), "../../pcb_calculator"),
|
||||
("pcbnew", ("pcbnew", "pcbnew_doc"), "../../pcbnew")
|
||||
]
|
||||
|
||||
SIZES = [
|
||||
|
|
|
@ -11,8 +11,8 @@ import xml.etree.ElementTree as ET
|
|||
from shutil import copyfile, rmtree
|
||||
from subprocess import call
|
||||
|
||||
ICON_SOURCES = "../bitmaps_png/sources/"
|
||||
DEST_FOLDER = "../resources/linux/mime"
|
||||
ICON_SOURCES = "../../bitmaps_png/sources/"
|
||||
DEST_FOLDER = "../../resources/linux/mime"
|
||||
|
||||
def icon_sourcename(icon):
|
||||
return ICON_SOURCES+"/icon_%s.svg" % icon
|
||||
|
|
Loading…
Reference in New Issue