fixed bug in previous commit: WXTOPDIR not set

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21677 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-07-05 19:21:29 +00:00
parent 3fe8bc147c
commit 5646c3f82d
2 changed files with 407 additions and 386 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -44,7 +44,7 @@ def addMakefile(bake, makedirs, deps=[], args={}):
makedir = makedirs['all']
tfile = '%s/%s' % (makedir, make)
lines.append('%s: %s' % (tfile, dep))
lines.append('\t$(BAKEFILE) -f%s -o$@ %s' % (format, bake))
lines.append('\t$(BAKEFILE) -f%s -o$@ %s %s' % (format, a, bake))
lines.append('\ttouch $@')
if format not in all: all[format] = []
all[format].append(tfile)