summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/list/listscan.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Modules/list/listscan.py')
-rw-r--r--Mac/Modules/list/listscan.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Modules/list/listscan.py b/Mac/Modules/list/listscan.py
index 8061b56..ea11ba4 100644
--- a/Mac/Modules/list/listscan.py
+++ b/Mac/Modules/list/listscan.py
@@ -3,6 +3,7 @@
import addpack
addpack.addpack(':tools:bgen:bgen')
from scantools import Scanner
+from bgenlocations import TOOLBOXDIR
LONG = "Lists"
SHORT = "list"
@@ -11,7 +12,7 @@ OBJECT = "ListRef"
def main():
input = LONG + ".h"
output = SHORT + "gen.py"
- defsoutput = LONG + ".py"
+ defsoutput = TOOLBOXDIR + LONG + ".py"
scanner = MyScanner(input, output, defsoutput)
scanner.scan()
scanner.close()